How to improve saving a scatter plot from three arrays with size 1*508654896
1 次查看(过去 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')
0 个评论
采纳的回答
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
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 Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!