Plot cores for large data sets
1 回表示 (過去 30 日間)
古いコメントを表示
Update: This problem turned out to be an intall issue. My app runs on some of our boxes but not others. Thanks all!
When using Plot (Xarray, Yarray, LineStyle); Matlab cores when the array length exceeds a couple thousand elements.
This may be a problem/bug in R2011b that was fixed in 2012.
What are the data limits Matlab can plot?
Can one determine programmatically the largest dimension of the X and Y data arrays that plot can handle?
What constrains the maximum length of X and Y data arrays that can be plotted (Memory, pixels, graphics card and/or licensed version of Matlab ...)?
Is DSPLOT available in Matlab R2011b? If so, what's its API?
4 件のコメント
Matt J
2014 年 1 月 8 日
編集済み: Matt J
2014 年 1 月 8 日
I think Walter meant that he would like to see the exact output of the command size(Yarray). This output would always be a vector of length at least 2 as in the following
>> Yarray=rand(2004,1); size(Yarray)
ans =
2004 1
In particular, are we definitely talking about vector inputs? Additionally, what is the output of
>> memory
回答 (1 件)
Matt J
2014 年 1 月 8 日
Is DSPLOT available in Matlab R2011b?
According to my web search, DSPLOT has never been a stock MATLAB function, but there is a DSPLOT on the File Exchange,
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!