Scatter fails if all elements but one at index(1,1) are nan.

53 Ansichten (letzte 30 Tage)
Joe Mueller
Joe Mueller am 4 Nov. 2024 um 5:31
Kommentiert: Joe Mueller am 4 Nov. 2024 um 17:26
I am trying to use a scatter plot to visualize a 2-D histogram. I set all points with 0 hits to nan to improve the visualization of the scattering patterns. I get the following errors if there is just 1 non-NaN value in the data set:
"The logical indices contain a true value outside of the array bounds."
"Error in matlab.graphics.chart.primitive.internal.AbstractScatter/doUpdate"
In an attempt to debug the issue, I simplified the code to the following 5 test cases where the first generates the error and the others do not.
x0 = 1:14;
y0 = 1:19;
hits = nan( 19, 14 );
[x,y] = meshgrid( x0, y0 );
test_case = 1;
if test_case == 1 % fails (single non-NaN point at 1,2)
hits(1,2) = 1;
scatter( y(:), x(:), 20, hits(:), 'filled', 's' )
elseif test_case == 2 % passes (single non-NaN point at 1,1)
hits(1,1) = 1;
scatter( y(:), x(:), 20, hits(:), 'filled', 's' )
elseif test_case == 3 % passes (two non-NaN points)
hits(1,1) = 1;
hits(1,2) = 1;
scatter( y(:), x(:), 20, hits(:), 'filled', 's' )
elseif test_case == 4 % passes (all points are NaN)
scatter( y(:), x(:), 20, hits(:), 'filled', 's' )
elseif test_case == 5 % passes (random values; identify those > 0)
hits = randi( 4, size( hits ) ) - 1;
hits(hits<1) = nan();
scatter( y(:), x(:), 20, hits(:), 'filled', 's' )
end
Any help would be much appreciated!
  2 Kommentare
David Goodmanson
David Goodmanson am 4 Nov. 2024 um 5:50
Bearbeitet: David Goodmanson am 4 Nov. 2024 um 5:59
Hi Joe, I tried this and all five cases worked including hits(1,1) = 1. I have Matlab 2023a Update 4
Joe Mueller
Joe Mueller am 4 Nov. 2024 um 16:23
Thanks! Walter Roberson indicated that this was a bug and fixed in 2023b.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 4 Nov. 2024 um 6:04
Bearbeitet: Walter Roberson am 4 Nov. 2024 um 6:06
This is fixed in R2023b (maybe slightly earlier)
There does not appear to be any public bug report about this.
  1 Kommentar
Joe Mueller
Joe Mueller am 4 Nov. 2024 um 17:26
I downloaded R2023b and the issue is resolved! Thanks for the feedback.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by