フィルターのクリア

how to generate waveform graph?

5 ビュー (過去 30 日間)
sing lai
sing lai 2014 年 4 月 21 日
コメント済み: sing lai 2014 年 4 月 22 日
Can anyone help me generate code to produce this waveform graph? This is wave equation that using finite difference method. Thank you very much for helping..

採用された回答

the cyclist
the cyclist 2014 年 4 月 21 日
Here is a simple script that will plot the function sin(L*x). Perhaps you can adapt it to plot your function u(x,t):
L = 0.5;
x = 0 : 0.1 : 60;
u = sin(L*x);
figure
plot(x,u)
  1 件のコメント
sing lai
sing lai 2014 年 4 月 22 日
Thank you, i get the idea, but how to apply finite difference method into this code? thanks for your help~

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by