why my Matlab calculate a simple code so solw?

조회 수: 1 (최근 30일)
擎 蒋
擎 蒋 2020년 12월 20일
편집: Asad (Mehrzad) Khoddam 2020년 12월 23일
my laptop is Alienware m15 which has qualified configuration for Matlab. But after i install it, i tried a simple code such as "1+1", it ran 4min before giving the answer. I can't figure out what is wrong. Or is it a normal situation?
  댓글 수: 4
J. Alex Lee
J. Alex Lee 2020년 12월 21일
is your current working dir a network location? i have noticed some slow down (though not that extreme) when i'm working from a network location, even when the operations don't involve any file i/o.
Madhav Thakker
Madhav Thakker 2020년 12월 23일
Which operating system and MATLAB version are you using?

댓글을 달려면 로그인하십시오.

답변 (1개)

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam 2020년 12월 23일
편집: Asad (Mehrzad) Khoddam 2020년 12월 23일
When you use this command:
two = 1 + 1
The program should display the results and it takes time to transfer data to graphic cards.
Morever, for timinh, it is better to do the operation for many time (1000 or more) and take the average.
change the code to this:
tic;two=1+1;toc
or in a loop
tic;
for i=1:1000;
two=1+1;
end;
toc

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by