Huge Execution Time Discrepancy with line() Command

조회 수: 3 (최근 30일)
Eric
Eric 2012년 1월 14일
The following code takes no more than 4 seconds to execute:
figure(statfig);
set(gcf,'Position',get(0,'ScreenSize').*[1 1 0.5 1]);
titlestr = [test ' - Statistics - ' num2str(rpmval) 'RPM - ' samplestr ' - ' upper(sensor)];
subplot(size(detdata,2),1,var);
plot(detdata(:,var)');
hold on;
% line([1:length(detdata)],avg_env_sample(var),'Color','r');
% line([1:length(detdata)],avg_env(var),'Color','g');
hold off;
% legend('Detrended Data','Envelope','Envelope Mean');
title([titlestr ' - ' varname]);
xlabel('Sample [n]');
ylabel([varname ' [g]']);
set(gcf,'Name',titlestr);
With the commented code uncommented, execution time goes up to two minutes. Similar code is executed 3 other times (without the line commands) without a problem.
Any suggestions?
  댓글 수: 3
Eric
Eric 2012년 1월 14일
16000
Eric
Eric 2012년 1월 14일
But plot() gets executed on that sized data many (hundreds) of times, with no issues.

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

채택된 답변

Rob Graessle
Rob Graessle 2012년 1월 14일
Are you expecting each call to 'line' to draw 15999 lines or just one line? If it is the latter, try this instead:
line([1 length(detdata)],avg_env_sample(var),'Color','r');
line([1 length(detdata)],avg_env(var),'Color','g');
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 1월 14일
It appears to me that var is a scalar, as otherwise the subplot() would not work. Then in order to draw a horizontal line, the y coordinate would need to be duplicated:
line([1 length(detdata)],avg_env_sample([var var]),'Color','r');
line([1 length(detdata)],avg_env([var var]),'Color','g');
Eric
Eric 2012년 1월 14일
So my understanding is this will draw a horizontal line interpolated from two (x,y) points instead of a 16000 point line? I still don't understand why the execution of the original code is so slow if plot() executes so quickly on the same sized data. But it does bring everything back to normal. Thank you Walter and Rob.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by