digital-brain/content/zettels/matlab.md

113 lines
4.2 KiB
Markdown
Raw Normal View History

2020-06-03 22:43:54 +02:00
+++
title = "Matlab"
author = ["Thomas Dehaeze"]
draft = false
+++
Tags
2020-08-17 21:59:26 +02:00
: [Simulink]({{< relref "simulink" >}})
2020-06-03 22:43:54 +02:00
## Resources on Matlab {#resources-on-matlab}
Books:
2020-08-17 21:59:26 +02:00
- ([Higham 2017](#org8ba8e47))
- ([Attaway 2018](#org4c6aa3b))
- ([OverFlow 2018](#orgad9dce4))
- ([Johnson 2010](#org1aa5652))
- ([Hahn and Valentine 2016](#orgc9b02db))
2020-06-03 22:43:54 +02:00
## Useful Commands {#useful-commands}
| Command | Description |
|------------------------|-------------------------------------------------------------|
| `desktop` | Open the Matlab Desktop |
| `workspace` | Open the Workspace |
| `who` | List all variables in the workspace |
| `edit <filename>` | Edit the file using Matlab Desktop (usefully for debugging) |
| `help <function>` | |
| `doc <function>` | |
| `checkcode <filename>` | Check Matlab code files for possible problems |
| `preferences` | Open Matlab preferences |
## Tips {#tips}
- Folder that starts with a `+` are automatically added to the path.
It is useful to add function inside such folder.
Then the function is accessible with `folder.function`.
## Snippets {#snippets}
### Do not show legend for one plot {#do-not-show-legend-for-one-plot}
```matlab
2020-08-17 21:59:26 +02:00
figure;
hold on;
plot(x, y1, 'DisplayName, 'lengendname');
plot(x, y2, 'HandleVisibility', 'off');
hold off;
legend('Location', 'northeast');
2020-06-03 22:43:54 +02:00
```
2020-08-17 11:21:16 +02:00
## Linux Installation {#linux-installation}
2020-06-03 22:43:54 +02:00
2020-08-13 11:19:08 +02:00
If a single user is using the Matlab installation on the machine:
2020-06-03 22:43:54 +02:00
2020-08-13 11:19:08 +02:00
```bash
2020-08-17 21:59:26 +02:00
sudo chown -R $LOGNAME: /usr/local/MATLAB/R2017b
2020-08-13 11:19:08 +02:00
```
Then, Toolboxes can be installed by the user without any problem.
To install Toolboxes, the best is to Download the Matlab installer from mathworks and just select the wanted toolboxes.
2020-08-17 11:21:16 +02:00
## Used Toolboxes {#used-toolboxes}
2020-08-17 21:59:26 +02:00
Nice functions:
- <https://github.com/jmrplens/SetFigPaper>
- <https://github.com/altmany/export%5Ffig>
- Matlab's `exportgraphics`
2020-08-17 11:21:16 +02:00
- `vfit3` ([link](https://www.sintef.no/projectweb/vectorfitting/)): used to identify transfer functions
2020-08-17 21:59:26 +02:00
## Debug Scripts {#debug-scripts}
<https://fr.mathworks.com/help/matlab/debugging-code.html>
<https://stackoverflow.com/questions/22853116/how-to-debug-matlab-code-without-gui>
| Command | Effect |
|------------|--------------------------------------------------------------|
| `dbclear` | Remove breakpoints |
| `dbcont` | Resume execution |
| `dbdown` | Reverse dbup workspace shift |
| `dbquit` | Quit debug mode |
| `dbstack` | Function call stack |
| `dbstatus` | List all breakpoints |
| `dbstep` | Execute next executable line from current breakpoint |
| `dbstop` | Set breakpoints for debugging |
| `dbtype` | Display file with line numbers |
| `dbup` | Shift current workspace to workspace of caller in debug mode |
| `keyboard` | Give control to keyboard |
| `echo` | Display statements during function execution |
2020-08-13 11:19:08 +02:00
## Bibliography {#bibliography}
2020-08-17 21:59:26 +02:00
<a id="org4c6aa3b"></a>Attaway, Stormy. 2018. _MATLAB : a Practical Introduction to Programming and Problem Solving_. Amsterdam: Butterworth-Heinemann.
2020-08-13 11:19:08 +02:00
2020-08-17 21:59:26 +02:00
<a id="orgc9b02db"></a>Hahn, Brian, and Daniel T Valentine. 2016. _Essential MATLAB for Engineers and Scientists_. Academic Press.
2020-08-13 11:19:08 +02:00
2020-08-17 21:59:26 +02:00
<a id="org8ba8e47"></a>Higham, Desmond. 2017. _MATLAB Guide_. Philadelphia: Society for Industrial and Applied Mathematics.
2020-08-13 11:19:08 +02:00
2020-08-17 21:59:26 +02:00
<a id="org1aa5652"></a>Johnson, Richard K. 2010. _The Elements of MATLAB Style_. Cambridge University Press.
2020-06-03 22:43:54 +02:00
2020-08-17 21:59:26 +02:00
<a id="orgad9dce4"></a>OverFlow, Stack. 2018. _MATLAB Notes for Professionals_. GoalKicker.com.