diff --git a/dotfiles/matlab.org b/dotfiles/matlab.org index 03f0714..e14c2da 100644 --- a/dotfiles/matlab.org +++ b/dotfiles/matlab.org @@ -108,28 +108,54 @@ #+end_src ** Add to path +Provides =vecfig3= for FRF fitting ([[https://www.sintef.no/projectweb/vectorfitting/downloads/][link]]). +#+begin_src matlab + addpath([toolboxes_path 'matrix_fitting_toolbox_1']) +#+end_src + +Apply and save color schemes in MATLAB with ease ([[https://github.com/scottclowe/matlab-schemer][link]]). +#+begin_src matlab + addpath([toolboxes_path 'matlab-schemer']) +#+end_src + +Converts MATLAB figures to TikZ ([[https://github.com/matlab2tikz/matlab2tikz][link]]). +#+begin_src matlab + addpath([toolboxes_path 'matlab2tikz/src']) +#+end_src + +MATLAB toolbox for exporting publication quality figures ([[https://github.com/altmany/export_fig][link]]). +#+begin_src matlab + addpath([toolboxes_path 'export_fig']) +#+end_src + +MATLAB source code formatter, beautifier ([[https://github.com/davidvarga/MBeautifier][link]]). +#+begin_src matlab + addpath([toolboxes_path 'MBeautifier']) +#+end_src + +Toolbox for Convex Programming ([[http://cvxr.com/cvx/][link]]). +#+begin_src matlab + addpath([toolboxes_path 'CVX']) +#+end_src + +Useful functions to use with =orgmode= ([[https://github.com/tdehaeze/Org-Mode-Matlab][link]]). #+begin_src matlab addpath([toolboxes_path 'Org-Mode-Toolbox/src']) - addpath([toolboxes_path 'Usefull-Functions/src']) - addpath([toolboxes_path 'Stacked-Elements-Toolbox/src']) - addpath([toolboxes_path 'Measure-Analysis-Toolbox/src']) - addpath([toolboxes_path 'Hinf-Toolbox/src']) - addpath([toolboxes_path 'Fit-Model-Toolbox/src']) - addpath([toolboxes_path 'Dspace-Toolbox/src']) - addpath([toolboxes_path 'SpeedGoat-Toolbox/src']) - addpath([toolboxes_path 'Add-Ons/matrix_fitting_toolbox_1']) - addpath([toolboxes_path 'Add-Ons/matlab-schemer']) - addpath([toolboxes_path 'Add-Ons/matlab2tikz/src']) - addpath([toolboxes_path 'Add-Ons/hline_vline']) - addpath([toolboxes_path 'Add-Ons/export_fig']) - addpath([toolboxes_path 'Add-Ons/subaxis']) - addpath([toolboxes_path 'Add-Ons/cbrewer']) - addpath([toolboxes_path 'Add-Ons/tightfig']) - addpath([toolboxes_path 'Add-Ons/fig2svg/src']) - addpath([toolboxes_path 'Add-Ons/CVX']) - addpath([toolboxes_path 'Add-Ons/MBeautifier']) - addpath([toolboxes_path 'Add-Ons/finite-element-model/src']) - % addpath([toolboxes_path 'Add-Ons/matlab-emacs-src/toolbox']) +#+end_src + +Some useful function ([[https://github.com/tdehaeze/matlab_useful_functions][link]]). +#+begin_src matlab + addpath([toolboxes_path 'matlab_useful_functions/src']) +#+end_src + +H-Infinity Toolbox ([[https://github.com/tdehaeze/hinf-toolbox][link]]). +#+begin_src matlab + % addpath([toolboxes_path 'Hinf-Toolbox/src']) +#+end_src + +Toolbox to work with Finite Element Models ([[https://github.com/tdehaeze/fem_matlab_toolbox][link]]). +#+begin_src matlab + addpath([toolboxes_path 'fem_toolbox/src']) #+end_src ** Clear @@ -142,7 +168,9 @@ :HEADER-ARGS:matlab+: :tangle ~/Documents/MATLAB/setup.m :END: -** Schemer Import +This script should be run once after Matlab is installed. + +Import a nice color scheme. #+begin_src matlab - schemer_import([home_path '/Cloud/thesis/matlab/toolboxes/Add-Ons/matlab-schemer/schemes/monokai.prf']); + schemer_import('~/Cloud/thesis/matlab/toolboxes/Add-Ons/matlab-schemer/schemes/monokai.prf'); #+end_src