필터 지우기
필터 지우기

How can I plot a huge set of data?

조회 수: 2 (최근 30일)
Haithem Bouziri
Haithem Bouziri 2013년 11월 1일
댓글: Haithem Bouziri 2013년 11월 1일
Hi
I have a 45000 *6 matrix, i want plot the 6th colon in function of the 5th colon. i used the function plot:
plot(TOT(:,5),TOT(:,6),'x');
Doing that, Matlab freeze. I've created a submatrix with the two colons i need and i tried again.
A=[TOT(:,5) TOT(:,6)]
plot(A(:,1),A(:,2),'x')
In the beginning it functions and i generated a report with matlab. But, today i want run my code again, it freezes in the plot line .
Does any one have an idea what can I do?
Thanks
  댓글 수: 4
Walter Roberson
Walter Roberson 2013년 11월 1일
Binning or sub-sampling should be fine for characterization purposes.
Haithem Bouziri
Haithem Bouziri 2013년 11월 1일
can you explain more please

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 11월 1일
By creating a new matrix A, you are increasing the memory used by Matlab. you can check the memory used by Matlab. Type
memory
Lookt at
  댓글 수: 6
Azzi Abdelmalek
Azzi Abdelmalek 2013년 11월 1일
When you type
memory
what do you get?
Haithem Bouziri
Haithem Bouziri 2013년 11월 1일
nothing, no error message. It freezes, busy and couldn't stop

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by