MATLAB tutorial for programmers [closed]

寵の児 提交于 2019-12-02 14:10:52

Enough snippy comments, here's something of an answer too:

  1. The Matlab desktop: what all the windows are for, dragging code from the history back into the command window, the variable inspector, etc.
  2. Plotting: not just the plot command, but how to use the plot GUI tools, and how to create an M-file from a graphic.
  3. M-files for scripts and functions, and the key differences between them.
  4. M-Lint, the profiler.
  5. Use Matlab as a vehicle for teaching the perils and pitfalls of floating-point arithmetic.
  6. Getting help: at the command line, on the web, documentation, the file exchange, ...
  7. Set path and the current working directory.
  8. Importing data from files, exporting data to files, loading and saving.

That should be enough to keep them busy for an hour or so.

To clarify, I propose these topics to help you teach your students to avoid common Matlab errors including;

  1. Unproductive use of the tool, retyping commands which can easily be recalled from the history, using C (or Java) style file reading commands instead of uuimport, slowly typing scripts to draw graphics when Matlab can do it for you, wondering what all the little orange lines in the editor right margin mean and the squiggly underlines, trying to figure things out for themselves when the help facilities could tell them, tons of other stuff that many much more experience Matlab users have taken ages to learn.
  2. Floating point arithmetic is not real.
  3. and probably a lot of other stuff too.

I agree with previous answers, but I'd say indexing is the first and the most important and complex concept in studying MATLAB. I saw many C programmers starting with MATLAB just write loops, a lot of loops, something ridiculous like

for i=1:10
    a(i)=i;
end

instead of simple a=1:10;.

So I'd suggest them to read about matrix programming concepts:

  • How to create simple vectors and matrices
  • Which variables can be used for indexing
  • How to create and apply indexes
  • Logical operations and functions, logical and numeric indexes (find function)
  • Indexing right and left side of expression
  • Difference between indexing numerical matrices and cell arrays
  • How to use indexes as output from different functions, like sort, unique, ismember, etc.
  • You cannot apply indexes to intermediate results

As for productivity, I would add that knowing how to use editor's cell mode is very useful.

For those coming from C-family languages, the element-wise operators are new. It took me a couple of months to discover the ./ and .* operators. Before that, I used to write for loops for element-wise operations. So perhaps that's something that should be pointed out.

gnovice

With respect to unexpected or non-intuitive MATLAB features that may cause them confusion, there are some good pointers in this question:

With respect to cool time-saving/efficiency tricks, this other question has some nice examples:

And for a few potentially more advanced topics, you can refer to the answers to this question:

Now for my $0.02. Based on the sorts of questions I've seen asked most frequently on SO, I'd say you will want to make sure they have a good understanding of the following concepts:

And here are some neat features that are already implemented in MATLAB that may save them some time and effort:

MATLAB is conceptually in some ways very different from other languages you mentioned:

  • cells are used were Java uses upcasting
  • global and persistent variables are static in Java
  • gui handles being just numbers of type double
  • nested functions are closures, neither Java nor C/C++ has such feature
  • seldom used private and @TYPE folders for visibility scoping
  • array handling tricks
  • very easy interoperability with Java/COM/.Net using MATLAB syntax
  • variadic function arguments, handling of function arguments with varargin / varargout
  • memory management
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!