Prev Up Next
Go backward to 2.4 Using MATLAB for Plotting
Go up to 2 Starting with MATLAB
Go forward to Some Examples

2.5 Other Miscellaneous MATLAB Commands

In this section, some other useful MATLAB commands are discussed. For a full description, see the MATLAB help for the function.

>> HPrices=[150000, 200000, 125000, 350000, 89000, 110000, ...
            110000, 150000, 120000, 100900, 93500, 97000, ...
            88000, 118500, 123300, 165000, 95000]';


 When defining a long vector, it can be very useful to use the line continuation facility by ending the lines with the characters ....
 
Peter Dunn

Prev Up Next