フィルターのクリア

how to plot a full sine wave using quarter wave in MATLAB?

2 ビュー (過去 30 日間)
yuvarani divakaramoorthy
yuvarani divakaramoorthy 2019 年 2 月 5 日
i have genearted quarter sine wave values and saved it in an array and plotted it to get a quarter sine wave. from this array how can i generate a whole sine wave?
  2 件のコメント
Kevin Phung
Kevin Phung 2019 年 2 月 5 日
how were those values generated?
yuvarani divakaramoorthy
yuvarani divakaramoorthy 2019 年 2 月 8 日
i have generated the values using piece wise approximation with two ROM tables and added it. stored those added values in an array

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

回答 (1 件)

Andrey Kiselnikov
Andrey Kiselnikov 2019 年 2 月 5 日
Did you mean this:
phase = 0:0.01:pi/2;
q_wave = sin(phase);
plot ([q_wave,fliplr(q_wave),q_wave.*-1,fliplr(q_wave.*-1)]);
?

カテゴリ

Help Center および File ExchangeGet Started with DDS Blockset についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by