130 likes | 254 Views
This guide offers a concise introduction to MATLAB, focusing on matrix manipulation, a fundamental concept in the language. Learn how to use scripts (m-files) to execute MATLAB commands and create reusable functions that accept arguments. Discover essential commands for matrix indexing, manipulation, and clearing the workspace. Resources for further learning are included. Perfect for beginners looking to understand MATLAB's core capabilities and get hands-on experience with matrix operations.
E N D
Script or function? • Scripts are m-files containing MATLAB statements • Functions are like any other m-file, but they accept arguments • It is always recommended to name function file the same as the function name
whos • help sth. • lookfor sth • clear / clear sth. • clc • http://courses.csail.mit.edu/6.869/resources.html • http://www.math.siu.edu/matlab/tutorials.html