<< Chapter < Page Chapter >> Page >
This module gives a very brief introduction to some of the concepts necessary to program with m-files.

You can use m-file scripts to automate computations. Almost anything typed at the command line can also be included in a m-file script. Lines in a m-file script are interpreted sequentially and the instructions are executed in turn. M-file scripts allow you to implement complex computations that cannot be readily achieved using commands at the command line. You can also create computational capabilities for other people to use.

There are some differences between MATLAB, MathScript, and Octave script files; these differences are typically not that significant. M-file scripts are text files and can be edited by any text editor. The script file must have an extension of ".m" and be in a directory that MATLAB knows about. M-file names should begin with a letter and only contain letters and numbers. Any other characters (space, dash, star, slash, etc.) will be interpreted as operations on variables and will cause errors. Also, M-file names should not be the same as variables in the workspace to differentiate between file names and variables.

Both MATLAB and LABVIEW MathScript have built-in editors with features that make editing m-file scripts easier. In both envrionments, the editor is integrated with a debugger which makes finding and correcting errors in your scripts easier. More detailed information about using the MATLAB editor be found at Mathworks Matlab Tutorial-Creating Scripts with MATLAB Editor/Debugger . More detailed information about using the LABVIEW MathScript editor be found at National Instruments LabVIEW MathScript Tutorial-Inside LabVIEW MathScript Tutorial. .

M-file scripts interact with the current executing environment. Variables set before the script is executed can affect what happens in the script. Variables set in the script remain after the script has finished execution.

Comments document your code and help other users (and yourself several months down the road) understand how you have implemented your program. Comments begin with the character % ; any text in a line after the % is ignored by the script interpreter.

To correctly execute a script, the script file environment must know the directory in which the script resides.

To instruct the MATLAB environment where to search for the m-file script, you can set the current working directory or set the search path. More detailed information can be found at Mathworks Matlab Tutorial-Working with Files, Directories and Paths .
To set the current working directory for LABVIEW MATHSCRIPT, use the menu File>MathScript Preferences in the MathScript interactive window. More detailed information can be found at National Instrument's LabVIEW MathScript Preferences Dialog Box.

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Freshman engineering problem solving with matlab. OpenStax CNX. Apr 23, 2007 Download for free at http://cnx.org/content/col10325/1.18
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Freshman engineering problem solving with matlab' conversation and receive update notifications?

Ask