animation in matlab?

how to make animation in matlab? i want to show animation for water flow and led blinking in matlab

 採用された回答

Grzegorz Knor
Grzegorz Knor 2011 年 9 月 16 日

1 投票

There is a lot of options. The main idea is as follows:
  • create an object (for example line)
  • change it propeties in a loop
simple example:
figure('menubar','none','color','k')
h = plot(sin(sqrt(2)*0+sqrt(3)),cos(sqrt(5)*0),'r.','MarkerSize',20);
xlim([-1 1])
ylim([-1 1])
axis off
for t=0.01:.01:100
set(h,'xdata',sin(sqrt(2)*t+sqrt(3)),...
'ydata',cos(sqrt(5)*t))
drawnow
end
See also:

1 件のコメント

PRIYANK SHAH
PRIYANK SHAH 2011 年 9 月 17 日
thank u very much its working......
can u tell me
: is this possible to measure sound level (db) of generated sound signal using matlab ? sound signal is sent to sound card .. but i dont know how to measure it or how to save that data for ploting nd convert it into dB?
thanks again for ur reply...

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeAnimation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by