镇场诗:慈心积善,为有缘人做大证明。以身作则,光照大千世界。
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Workspace Variables
The workspace contains variables that you create within or import into MATLAB? from data files or other programs.
工作区包含的变量,有些是你创建的,有些是MATLAB从其它文件或者程序中读取到的。
For example, these statements create variables A and B in the workspace.
举个例子,下面的语句在工作区创建了变量A与B
A = magic(4);
B = rand(3,5,2);
You can view the contents of the workspace using whos.
你可以用whos查看工作区里面的内容。
whos
Name Size Bytes Class Attributes
A 4x4 128 double
B 3x5x2 240 double
The variables also appear in the Workspace pane on the desktop.
变量们在桌面的工作区章也有显示。
Workspace variables do not persist after you exit MATLAB. Save your data for later use with the save command,
save myfile.mat
工作区的变量们在你退出MATLAB后就不存在了,所以保存你的数据很重要。
Saving preserves the workspace in your current working folder in a compressed file with a .mat extension, called a MAT-file.
保存工作区的当前的数据状态,在你现在工作的文件夹中生成一个后缀名为.mat的文件。
To clear all the variables from the workspace, use the clear command.
用clear命令,清除工作区中的所有变量。
Restore data from a MAT-file into the workspace using load.
load myfile.mat
从.mat文件中恢复数据到工作区用 load命令。
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
为了让每个新手使用MATLAB这一优秀的软件,所以翻译matlab, 借助了翻译软件和实践时候的经验,愿所有看了这篇翻译的人能得到一些启示。
因为是为了帮助新手入门,所以我努力以人为本,说新手听得懂的语言,绝不一一对译。n(*≧▽≦*)n
如果我的翻译有错误,请指正。我会不断地进步并更新改进翻译的。请务必不吝赐教。在下感激不尽。
感恩众生与使用的软件,金山词霸与microsoft word。
注:此文仅用作科研学习使用。如果我侵犯了您的权益,请告知。看到您的告知后,我将及时作出处理。
此文为原创,未经同意不得转载。所以转载到其他网站前,请询问在下。