├── .editorconfig ├── .gitignore ├── MATLABTips.tex ├── Makefile ├── README.md ├── _config.yml ├── docs ├── UPDATE.md └── reading.md ├── main.sty ├── mcode.sty └── tex ├── abstract.tex ├── appendix.tex ├── code ├── secEfficientCoding │ ├── decomposition-linear-equation-system-solve-result.m │ ├── decomposition-linear-equation-system-solve.m │ ├── functions-result.m │ ├── functions.m │ ├── matrix-col-row-result.m │ ├── matrix-col-row.m │ ├── matrix-compute-2-result.m │ ├── matrix-compute-2.m │ ├── matrix-compute-result.m │ ├── matrix-compute.m │ ├── memory-pre-allocation-result.m │ ├── memory-pre-allocation.m │ ├── open-profile.m │ ├── parfor-for-result.m │ └── parfor-for.m ├── secFeaturesSome │ ├── code-cell.m │ ├── code-protect.m │ ├── code-publish.m │ ├── my-startup.m │ ├── number-display-setting.m │ ├── print-error.m │ ├── print-string-colored-red.m │ ├── print-warning.m │ ├── time-recorder-1.m │ ├── time-recorder-2.m │ └── time-recorder-result.m ├── secJustStart │ ├── first-function.m │ └── first-script.m └── secSkillsSome │ ├── define-help-comment.m │ ├── math-in-figure.m │ ├── rand-matrix.m │ ├── repeat-matrix-2.m │ ├── repeat-matrix-result.m │ └── repeat-matrix.m ├── content.tex ├── cover.tex ├── figure ├── breakpoint1.png ├── breakpoint2.png ├── breakpoint3.png ├── memoryout.jpg ├── memoryout.png ├── publish.png └── setpath.png ├── secEfficientCoding.tex ├── secFeaturesSome.tex ├── secFunctionsSome.tex ├── secJustStart.tex ├── secSkillsSome.tex └── secSpiceHere.tex /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /MATLABTips.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/MATLABTips.tex -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/docs/UPDATE.md -------------------------------------------------------------------------------- /docs/reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/docs/reading.md -------------------------------------------------------------------------------- /main.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/main.sty -------------------------------------------------------------------------------- /mcode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/mcode.sty -------------------------------------------------------------------------------- /tex/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/abstract.tex -------------------------------------------------------------------------------- /tex/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/appendix.tex -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/decomposition-linear-equation-system-solve-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/decomposition-linear-equation-system-solve-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/decomposition-linear-equation-system-solve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/decomposition-linear-equation-system-solve.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/functions-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/functions-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/functions.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-col-row-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-col-row-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-col-row.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-col-row.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-compute-2-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-compute-2-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-compute-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-compute-2.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-compute-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-compute-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/matrix-compute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/matrix-compute.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/memory-pre-allocation-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/memory-pre-allocation-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/memory-pre-allocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/memory-pre-allocation.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/open-profile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/open-profile.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/parfor-for-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/parfor-for-result.m -------------------------------------------------------------------------------- /tex/code/secEfficientCoding/parfor-for.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secEfficientCoding/parfor-for.m -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/code-cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secFeaturesSome/code-cell.m -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/code-protect.m: -------------------------------------------------------------------------------- 1 | pcode filename.m -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/code-publish.m: -------------------------------------------------------------------------------- 1 | publish('test.m','pdf'); -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/my-startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secFeaturesSome/my-startup.m -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/number-display-setting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secFeaturesSome/number-display-setting.m -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/print-error.m: -------------------------------------------------------------------------------- 1 | error('edit your text here.'); -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/print-string-colored-red.m: -------------------------------------------------------------------------------- 1 | fprintf(2,'edit your text here.'); -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/print-warning.m: -------------------------------------------------------------------------------- 1 | warning('edit your text here.'); -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/time-recorder-1.m: -------------------------------------------------------------------------------- 1 | tic 2 | disp('Time recorder...'); 3 | toc -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/time-recorder-2.m: -------------------------------------------------------------------------------- 1 | t1 = tic; 2 | disp('Time recorder...'); 3 | toc(t1) -------------------------------------------------------------------------------- /tex/code/secFeaturesSome/time-recorder-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secFeaturesSome/time-recorder-result.m -------------------------------------------------------------------------------- /tex/code/secJustStart/first-function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secJustStart/first-function.m -------------------------------------------------------------------------------- /tex/code/secJustStart/first-script.m: -------------------------------------------------------------------------------- 1 | disp('Hello MATLAB') % 我是注释,前面一条语句是输出 2 | A = [1 2; 3 4]; % 创建一个矩阵,若句尾不加分号执行时会直接输出 -------------------------------------------------------------------------------- /tex/code/secSkillsSome/define-help-comment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/define-help-comment.m -------------------------------------------------------------------------------- /tex/code/secSkillsSome/math-in-figure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/math-in-figure.m -------------------------------------------------------------------------------- /tex/code/secSkillsSome/rand-matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/rand-matrix.m -------------------------------------------------------------------------------- /tex/code/secSkillsSome/repeat-matrix-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/repeat-matrix-2.m -------------------------------------------------------------------------------- /tex/code/secSkillsSome/repeat-matrix-result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/repeat-matrix-result.m -------------------------------------------------------------------------------- /tex/code/secSkillsSome/repeat-matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/code/secSkillsSome/repeat-matrix.m -------------------------------------------------------------------------------- /tex/content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/content.tex -------------------------------------------------------------------------------- /tex/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/cover.tex -------------------------------------------------------------------------------- /tex/figure/breakpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/breakpoint1.png -------------------------------------------------------------------------------- /tex/figure/breakpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/breakpoint2.png -------------------------------------------------------------------------------- /tex/figure/breakpoint3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/breakpoint3.png -------------------------------------------------------------------------------- /tex/figure/memoryout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/memoryout.jpg -------------------------------------------------------------------------------- /tex/figure/memoryout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/memoryout.png -------------------------------------------------------------------------------- /tex/figure/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/publish.png -------------------------------------------------------------------------------- /tex/figure/setpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/figure/setpath.png -------------------------------------------------------------------------------- /tex/secEfficientCoding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secEfficientCoding.tex -------------------------------------------------------------------------------- /tex/secFeaturesSome.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secFeaturesSome.tex -------------------------------------------------------------------------------- /tex/secFunctionsSome.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secFunctionsSome.tex -------------------------------------------------------------------------------- /tex/secJustStart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secJustStart.tex -------------------------------------------------------------------------------- /tex/secSkillsSome.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secSkillsSome.tex -------------------------------------------------------------------------------- /tex/secSpiceHere.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HereChen/The-Way-MATLAB-Learning/HEAD/tex/secSpiceHere.tex --------------------------------------------------------------------------------