Matlab 版 (精华区)

发信人: zjliu (Robusting), 信区: Matlab
标  题: 数学工具FAQ[smth]--第二节:Matlab常见问题9
发信站: 哈工大紫丁香 (Tue Dec 17 15:03:53 2002) , 转信

 

===================================
56)..如何使用整型矩阵来节省内存?(Duane Hanselman)
:#Duane Hanselman (masteringmatlab@yahoo.com),2002/10/22,comp.soft-sys.matlab#



        如下方法无需先生成一个double的数组,然后转换为int8

        >> rc=[3 4] % row and column sizes
        >> a(prod(rc))=int8(0) % example using int8
        >> class(a)  % they are all int8s
        >> reshape(a,rc) % make it the size you want

        同时也可以使用repmat来实现上述功能:


        >> repmat(int8(0),rc)


===================================
57).Matlab在P4芯片上无法启动的解决方案
:#FangQ(Qianqian.Fang@dartmouth),2002/11/10,SMTH/MathTools#

        如果不想安装补丁,只能使用matlab -nojvm的形式启动
        matlab,否则需要参照如下页面的解决方案来安装补丁:
        http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=
               NQ8a9.6835%24ob2.611653%40newsread1.prod.itd.earthlink.net
        http://www.mathworks.com/support/solutions/data/27293.shtml



--

※ 来源:.哈工大紫丁香 http://bbs.hit.edu.cn [FROM: 202.118.229.86]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.094毫秒