Plot animation with Struct. Variables

1 回表示 (過去 30 日間)
Lawson Hoover
Lawson Hoover 2012 年 12 月 8 日
コメント済み: Lauren 2013 年 12 月 13 日
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
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?
Lawson Hoover
Lawson Hoover 2012 年 12 月 8 日
% Data
clear; close all;
M = zeros(1,100);
x = linspace(1,100);
y = linspace(50,100);
% figre
figure(1);
set(gcf,'Renderer','OpenGL');
h = plot(x(1),y(1),'-r','linewidth',6);
set(h,'EraseMode','normal');
% Animation
j = 1;
for j = 1:100
set(h,'XData',x(j))
set(h,'YData',y(j))
plot(h)
M(j) = getframe;
end
movie(M,2)
The Code above is what I have been messing with to figure the animation thing and it keeps on returning the first error.

サインインしてコメントする。

採用された回答

Lawson Hoover
Lawson Hoover 2012 年 12 月 8 日
I have figured out how to make it work.
  1 件のコメント
Lauren
Lauren 2013 年 12 月 13 日
Can you please share? I am having the same problem. How did you get it to work?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnimation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by