Redian新闻
>
Matlab跑了两天了没有反应
avatar
Matlab跑了两天了没有反应# Computation - 科学计算
f*t
1
跑一个很大的simulation,2天了,我算着该跑完了,现在matlab程序窗口不显示东西
了,任务管理显示not responding, 但是显示cpu占用率还是很高。大家说是不是死了
?还是继续等?是winxp下的。
avatar
s*b
2
keep waiting

【在 f*******t 的大作中提到】
: 跑一个很大的simulation,2天了,我算着该跑完了,现在matlab程序窗口不显示东西
: 了,任务管理显示not responding, 但是显示cpu占用率还是很高。大家说是不是死了
: ?还是继续等?是winxp下的。

avatar
g*y
3
it's normal when you run a time consuming prgram in matlab. just wait for a
while. my suggestions are: (1) run the program with some similar but small t
ests first, then you can get a good estimation of the time of the real one.(
2) add some lines in the code to output some indicators, such as the # of it
erations, so you will know what steps it currently on.

【在 f*******t 的大作中提到】
: 跑一个很大的simulation,2天了,我算着该跑完了,现在matlab程序窗口不显示东西
: 了,任务管理显示not responding, 但是显示cpu占用率还是很高。大家说是不是死了
: ?还是继续等?是winxp下的。

avatar
j*u
4
Agree. BTW: you'd better write the indicators to a small .txt file
because sometimes the matlab program doesn't respond during a large scale
calculation.

a
t
.(
it

【在 g****y 的大作中提到】
: it's normal when you run a time consuming prgram in matlab. just wait for a
: while. my suggestions are: (1) run the program with some similar but small t
: ests first, then you can get a good estimation of the time of the real one.(
: 2) add some lines in the code to output some indicators, such as the # of it
: erations, so you will know what steps it currently on.

avatar
f*t
5
thanks a lot, it is a great idea to give an output, i do it next time.
luckily, the program is not dead, it came out this morning:)
avatar
m*e
6
哪有用matlab做科学计算的?这不是笑话吗?
要么用C++,要么FORTORN
avatar
j*u
7
计算量不是很大的话,是可以忍受的

【在 m***e 的大作中提到】
: 哪有用matlab做科学计算的?这不是笑话吗?
: 要么用C++,要么FORTORN

avatar
s*b
8
matlab调试还是很方便的,而且
大规模计算并不是人人都需要的

【在 m***e 的大作中提到】
: 哪有用matlab做科学计算的?这不是笑话吗?
: 要么用C++,要么FORTORN

avatar
j*u
9
nod

【在 s**b 的大作中提到】
: matlab调试还是很方便的,而且
: 大规模计算并不是人人都需要的

avatar
m*e
10

他明明跑了两天了还没出结果
对于我来说,半个小时一上的都不能用matlab

【在 j**u 的大作中提到】
: 计算量不是很大的话,是可以忍受的
avatar
s*b
11
跑一跑才知道matlab需要多久阿。
matlab跑几天不算什么,我一般就用matlab跑几天的程序,
反正我不急等着结果

【在 m***e 的大作中提到】
:
: 他明明跑了两天了还没出结果
: 对于我来说,半个小时一上的都不能用matlab

avatar
A*l
12
matlab有很多现成的函数啊,编程比较方便,
何况lz估计对运行速度要求并不高

【在 m***e 的大作中提到】
:
: 他明明跑了两天了还没出结果
: 对于我来说,半个小时一上的都不能用matlab

avatar
k*n
13
For some matrix computations, Matlab would be as fast as C/FORTRAN.
avatar
p*y
14
很好的建议,谢谢

a
t
.(
it

【在 g****y 的大作中提到】
: it's normal when you run a time consuming prgram in matlab. just wait for a
: while. my suggestions are: (1) run the program with some similar but small t
: ests first, then you can get a good estimation of the time of the real one.(
: 2) add some lines in the code to output some indicators, such as the # of it
: erations, so you will know what steps it currently on.

avatar
p*y
15
太汗了,
我们的流行做法是,去喝杯咖啡,吃个午饭,让matlab自己在那儿干活儿

【在 m***e 的大作中提到】
:
: 他明明跑了两天了还没出结果
: 对于我来说,半个小时一上的都不能用matlab

avatar
w*s
16
这么大的最好上Server上跑。实在需要的PC上跑的,中间多加输出Message。
avatar
j*u
17
要写文件,输出message不好,因为常常整个matlab都没有反应。

【在 w**********s 的大作中提到】
: 这么大的最好上Server上跑。实在需要的PC上跑的,中间多加输出Message。
avatar
o*r
18
听说Matlab出了个软件, 叫做Matlab Compiler. 可以把Matlab程序编译成可执行文件
, 直接脱离Matlab进行运算, 速度很快。
不知道有谁用过?说说感受吧。
avatar
f*7
19
一条建议,如果可能,每过一定iteration,把中间结果存一下,万一死了,
可以调出来接着运行
avatar
c*u
20
matlab compiler 对于速度毫无帮助.Matlab本身要花多少时间,compile后的
.exe要花几乎完全同样多的时间.
matlab compiler之所以存在是为了不买额外的license的情况下运行一些matlab
程序,比如你写了一个GUI,想在一个没装matlab的计算机上使用.

【在 o****r 的大作中提到】
: 听说Matlab出了个软件, 叫做Matlab Compiler. 可以把Matlab程序编译成可执行文件
: , 直接脱离Matlab进行运算, 速度很快。
: 不知道有谁用过?说说感受吧。

avatar
s*o
21
据我和别人的经验,这个没有什么帮助。好处就是不需要Matlab,也可以运行你的程序
,但是速度还是慢。

【在 o****r 的大作中提到】
: 听说Matlab出了个软件, 叫做Matlab Compiler. 可以把Matlab程序编译成可执行文件
: , 直接脱离Matlab进行运算, 速度很快。
: 不知道有谁用过?说说感受吧。

avatar
E*d
22
这个compiler是那个mcc嘛?

【在 c*u 的大作中提到】
: matlab compiler 对于速度毫无帮助.Matlab本身要花多少时间,compile后的
: .exe要花几乎完全同样多的时间.
: matlab compiler之所以存在是为了不买额外的license的情况下运行一些matlab
: 程序,比如你写了一个GUI,想在一个没装matlab的计算机上使用.

avatar
d*n
23
I don't believe Matlab is good for debugging...
because its language is too much flexible, sometimes, you make an error, yet
the program is still able to run but give you totally nonsense.
I prefer the language that has lower tolerance.
avatar
s*n
24
matlab对付5000×5000的matrix如何?用xcorr2命令好像就死机了,老半天没反应。
pentium(R)4 CPU 3.2G,2G RAM.升级一下机器如何?1k一下不带显示器的有什么推荐
?多谢。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。