Plot animation with Struct. Variables
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I was trying to turn this sequence for a single plot into a movie. Beam.x and Beam.y is a 100 spot vector. My original code is:
plot(x,y,'--r','LineWidth',3); % This is the original position of the Beam
hold on % Holds only the axes values
line(Beam.x,Beam.y,'color','b','linewidth',2); % The New position of Beam
xlabel('Beam Length (in.)','Color','g');
ylabel(bstr,'Color','g');
ylim([-(Beam.y(10)) max(Beam.y)]);
legend('Without Deflection','With Deflection');
title(astr,'Color','y','fontweight','b');
set(S.ax,'YDir','reverse');
set(S.ax,'XGrid','on');
set(S.ax,'YGrid','on');
hold off
Anytime I try to turn it into a movie or anything of the sort I get the error:
The following error occurred converting from struct to double:
Error using double
Conversion to double from struct is not possible.
OR:
Error using capturescreen
Figure destroyed during getframe
Error in getframe (line 103)
x=builtin('capturescreen', varargin{:});
Any ideas?
2 commentaires
Walter Roberson
le 8 Déc 2012
Which line of code shows the problem about converting struct to double? How are you trying to turn it into a movie?
Réponse acceptée
Lawson Hoover
le 8 Déc 2012
1 commentaire
Lauren
le 13 Déc 2013
Can you please share? I am having the same problem. How did you get it to work?
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Animation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!