❶ Matlab软件不同版本间有什么大区别吗
MATLAB每年会发布两个版本,A版在3月份发布,B版在9月份发布,两者没有本质上的区别,B版可以简单理解为版本更新。mathworks公司的惯例就是每年两个版本。
MATLAB 是美国MathWorks公司出品的商业数学软件,用于算法开发、数据可视化、数据分析以及数值计算的高级技术计算语言和交互式环境,主要包括MATLAB和Simulink两大部分。
MATLAB是matrix&laboratory两个词的组合,意为矩阵工厂(矩阵实验室)。是由美国mathworks公司发布的主要面对科学计算、可视化以及交互式程序设计的高科技计算环境。

❷ 如何查看matlab版本信息
可以用version命令查看matlab版本信息。

❸ matlab都有哪些版本
版本更新:版本[1]
建造编号
发布时间
MATLAB
1.0
1984
MATALB
2
1986
MATLAB
3
1987
MATLAB
3.5
1990
MATLAB
4
1992
MATLAB
4.2c
R7
1994
MATLAB
5.0
R8
1996
MATLAB
5.1
R9
1997
MATLAB
5.1.1
R9.1
1997
MATLAB
5.2
R10
1998
MATLAB
5.2.1
R10.1
1998
MATLAB
5.3
R11
1999
MATLAB
5.3.1
R11.1
1999
MATLAB
6.0
R12
2000
MATLAB
6.1
R12.1
2001
MATLAB
6.5
R13
2002
MATLAB
6.5.1
R13SP1
2003
MATLAB
6.5.2
R13SP2
2003
MATLAB
7
R14
2004
MATLAB
7.0.1
R14SP1
2004
MATLAB
7.0.4
R14SP2
2005
MATLAB
7.1
R14SP3
2005
MATLAB
7.2
R2006a
2006
MATLAB
7.3
R2006b
2006
MATLAB
7.4
R2007a
2007
MATLAB
7.5
R2007b
2007
MATLAB
7.6
R2008a
2008
MATLAB
7.7
R2008b
2008
MATLAB
7.8
R2009a
2009.3.6
MATLAB
7.9
R2009b
2009.9.4
MATLAB
7.10
R2010a
2010.3.5
我用的是r2009a
可以在WIN7上运行
❹ 怎么查看自己的matlab的license number
你好,很高兴回答的问题。
具体是什么版本,选择lic_server.dat 导入,即可破解。
❺ 怎样判断matlab是否正版
一般来说,matlab都是盗版的,破解版的,如果你想需要正版,那你就得去买,一个公司不可能免费提供这种软件
❻ 查看matlab中某一函数是从哪个版本开始有及修改
假设你原来的数据存在变量a中如果,你想从a中随机抽取固定N个数c=randperm(numel(a));b=a(c(1:N));b就是从a中随机抽取的N个数(N应该小于a中元素的总个数)
❼ 如何查看MATLAB的版本
在命令窗口 输入 version
❽ Matlab中a版和b版有什么区别
Matlab中a版和b版的区别:上半年出的版本是a版,下半年出的版本是b版。(比如:matlab 2014a是2014年春季,也就是上半年推出的。)
❾ 怎么查看matlab工具箱
可以说很多台电脑上安装matlab,但同一时刻只有n台电脑可以使用matlab。这个n由license文件来决定。同样,加入研究机构只购买了5个simulink的使用权限,那么同一时刻在这个研究机构最多有五台电脑可以使用simulink。同理,我们可以限制这个研究机构同时最多能在三台电脑上用optimization toolbox,两台电脑上用signal processing toolbox。
有的时候你想用的软件包,但该软件包的当前使用人数已经达到最大,怎么办?我们可以买更多的权限,当然这比较慢。我们也可以询问我们的朋友,如果他们正在开着simulink却不用,那可以让他先把simulink关掉,这样我们就可以用了。
查询Matlab各工具箱用户状况的方法如下
1. windows->start->run
2. 输入"cmd"
3. 通过"cd.."退到matlab按转盘根目录。
4. 通过"cd folder_name"的方式进入matlab安装目录。
在我的电脑中,我要进入
“C:\Program Files\MATLAB\R2009b\bin\win32”
5. 执行命令"lmutil lmstat -a -c"
6. 这样就能查看用户状况了。
这里需要一些基本dos操作的知识。如果你的matlab中包括lmtools这个工具,那完全可以通过图形界面简单明了的查询用户使用状况。如果没有lmtools,那就只能在dos环境下查询了。
❿ 如何才知道MATLAB的版本
matlab好像从7开始就自带netcdf工具箱,如果想装第三方的,直接装就行,跟版本没有关系,历代matlab都向下兼容
>> help netcdf
NETCDF Summary of MATLAB NETCDF capabilities.
MATLAB provides low-level access to netCDF files via direct access to
more than 30 functions in the netCDF library. To use these MATLAB
functions, you must be familiar with the netCDF C interface. The
"NetCDF C Interface Guide" for version 3.6.2 may be consulted at
<http://www.unidata.ucar.e/software/netcdf/old_docs/docs_3_6_2/>.
In most cases, the syntax of the MATLAB function is similar to the
syntax of the netCDF library function. The functions are implemented
as a package called "netcdf". To use these functions, one needs to
prefix the function name with package name "netcdf", i.e.
ncid = netcdf.open ( ncfile, mode );
The following table lists all the netCDF library functions supported by
the netCDF package.
abort - Revert recent netCDF file definitions.
close - Close netCDF file.
create - Create new netCDF file.
endDef - End netCDF file define mode.
inq - Return information about netCDF file.
inqLibVers - Return netCDF library version information.
open - Open netCDF file.
reDef - Set netCDF file into define mode.
setDefaultFormat - Change default netCDF file format.
setFill - Set netCDF fill mode.
sync - Synchronize netCDF dataset to disk.
defDim - Create netCDF dimension.
inqDim - Return netCDF dimension name and length.
inqDimID - Return dimension ID.
renameDim - Change name of netCDF dimension.
defVar - Create netCDF variable.
getVar - Return data from netCDF variable.
inqVar - Return information about variable.
inqVarID - Return ID associated with variable name.
putVar - Write data to netCDF variable.
renameVar - Change name of netCDF variable.
Att - Copy attribute to new location.
delAtt - Delete netCDF attribute.
getAtt - Return netCDF attribute.
inqAtt - Return information about netCDF attribute.
inqAttID - Return ID of netCDF attribute.
inqAttName - Return name of netCDF attribute.
putAtt - Write netCDF attribute.
renameAtt - Change name of attribute.
The following functions have no equivalents in the netCDF library.
getConstantNames - Return list of constants known to netCDF library.
getConstant - Return numeric value of named constant
Please read the files netcdfright.txt and mexncright.txt for
more information.