Tagged: string

plot

plot Linear plot. plot(X,Y) plots vector Y versus vector X. If X or Y is a matrix, then the vector is plotted versus the rows or columns of the matrix, whichever line up. If...

save

SAVE Save workspace variables to disk. SAVE FILENAME saves all workspace variables to the binary “MAT-file” named FILENAME.mat. The data may be retrieved with LOAD. If FILENAME has no extension, .mat is assumed. SAVE,...

rmpath

rmpath Remove directory from search path. rmpath DIRNAME removes the specified directory from the current matlabpath. rmpath DIR1 DIR2 DIR3 removes all the specified directories from the path. Use the functional form of RMPATH,...

Path

path Get/set search path. PATH, by itself, prettyprints MATLAB’s current search path. The initial search path list is set by PATHDEF, and is perhaps individualized by STARTUP. P = path returns a string containing...

Desktop Tools

This section provides an introduction to MATLAB’s desktop tools. You can also use MATLAB functions to perform most of the features found in the desktop tools. The tools are: “Command Window” “Command History” “Launch...

diary

DIARY Save text of MATLAB session. DIARY filename causes a copy of all subsequent command window input and most of the resulting command window output to be appended to the named file. If no...