Plot animation with Struct. Variables
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2012-12-8
Which line of code shows the problem about converting struct to double? How are you trying to turn it into a movie?
采纳的回答
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!