필터 지우기
필터 지우기

How to improve saving a scatter plot from three arrays with size 1*508654896

조회 수: 2 (최근 30일)
using 3 arrays R,S and T I want to make a scatterplot,but it takes a lot of time to save the scatterplot and sometimes crashed. How can I improve it?
bb= find(R>=0.2 & R <0.4);
x2 = S(bb);
y2 = T(bb);
figure(2)
scatter(x2,y2,'MarkerFaceColor','b','MarkerEdgeColor','b');
saveas(gcf,'420bbh.tiff', 'tiffn') saveas(gcf,'420bbh.fig')

채택된 답변

Sean de Wolski
Sean de Wolski 2015년 2월 9일
I think you need to consider another kind of plot. Your monitor doesn't even have that many pixels!
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2015년 2월 9일
Then remove them before scattering!
Otherwise, they still need to be transmitted.
Here's one way to remove:
idxNan = isnan(x)|isnan(y);
x(idxNan) = [];
y(idxNan) = [];

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by