I want to execute this code but there is an error in function command,please modify this program to get the output

13 ビュー (過去 30 日間)
function[X]= generateSin(a,f,ph,t,Fs)
f=5;
a=3;
ph=pi/2;
Fs=300;
T=1/Fs;
L=1000;tmax=L*T;
t=0:T:tmax-T;
X=a*sin(2*pi*t*f+ph);
figure()
plot(t,X)
end
  2 件のコメント
Alex Mcaulley
Alex Mcaulley 2019 年 6 月 7 日
This code works for me! What do you mean with "there is an error"?
Geoff Hayes
Geoff Hayes 2019 年 6 月 7 日
sandhya - why does your function signature have input parameters which you then overwrite with
f=5;
a=3;
ph=pi/2;
Fs=300;

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

回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by