Why do I recieve error when doing sinc function
4 ビュー (過去 30 日間)
表示 古いコメント
Im trying to plot the sinc function and im given my A and T however when i try to input the equation i get an error

A = 1;
T = 1;
gf= AT sinc(fT);
回答 (2 件)
Jon
2022 年 1 月 25 日
If you want to plot the sinc value for a range of values then you need to pass it a vector of values.
So for example:
x = linspace(-10,10,1000); % defines a vector with a thousand equally spaced points between -10 and 10
y = sinc(x);
plot(x,y)
You will need to modify with your actual values and scaling constants
3 件のコメント
Jon
2022 年 1 月 25 日
If you are still just trying to get the basics of using MATLAB I would suggest completing the MATLAB on-ramp https://www.mathworks.com/learn/tutorials/matlab-onramp.html
Yusuf Suer Erdem
2022 年 1 月 25 日
Hi, try it this way. That is the way how it should be done. But I could not get the exact waveform. Maybe others could help.
t = linspace(-5,5);
f=1./t;
A=5;
y = A.*t.*sinc(f.*t);
plot(t,y)
grid
0 件のコメント
参考
カテゴリ
Find more on Waveform Generation in Help Center and File Exchange
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!