Assigning a 3D scatter plot to structure array
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
Is it possible to assign scatter plots in a structure array which can then be recalled individually?
I currently have the following line:
cell_data(i).visual = scatter3(a(:,1), a(:,2), a(:,3),50, 'fill')
However if I try to recall any individual plot I just receive a number...
Kind regards,
Tom
3 Kommentare
per isakson
am 18 Feb. 2014
Bearbeitet: per isakson
am 18 Feb. 2014
You assign values to cell_data(i).positions in your code? Is it the values of a?
"call up the 3D scatter plot". Do you mean make the plot visible; bring it to the top?
Antworten (1)
per isakson
am 18 Feb. 2014
Try this with the [Run and Advance] button

jj = 1;
a = magic( 3 );
figure
cell_data(jj).visual = scatter3(a(:,1), a(:,2), a(:,3), 50, 'fill');
jj = 2;
a = randi( 6, [3,3] );
figure % create new figure; avoid overwriting
cell_data(jj).visual = scatter3(a(:,1), a(:,2), a(:,3), 50, 'fill');
get( cell_data(jj).visual, 'Type' )
fh = ancestor( cell_data(jj).visual, 'figure' );
figure( fh )
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!