I'm getting an error using fplot, How do I get it to work?

2 vues (au cours des 30 derniers jours)
John
John le 9 Mar 2023
Modifié(e) : Voss le 9 Mar 2023
When I try to run my code I keep getting this error.
Warning: The tolerance parameter input to fplot has been removed.
> In fplot (line 93)
Error using fplot
Invalid parameter '1'.
Xs = 1.8;
fs = 10;
fi = pi/3;
t1 = -0.1;
t2 = 0.2;
t = [t1, t2];
x = inline('Xs*sin (2*pi*fs*t+fi)', 't', 'Xs','fs','fi');
fplot (x, t, 2e-3,1,'-',Xs, fs, fi)
Warning: The tolerance parameter input to fplot has been removed.
Error using fplot
Invalid parameter '1'.

Réponse acceptée

Voss
Voss le 9 Mar 2023
Modifié(e) : Voss le 9 Mar 2023
Xs = 1.8;
fs = 10;
fi = pi/3;
t1 = -0.1;
t2 = 0.2;
t = [t1, t2];
x = @(t)Xs*sin(2*pi*fs*t+fi);
fplot(x,t,'-')

Plus de réponses (0)

Catégories

En savoir plus sur Earth and Planetary Science dans Help Center et File Exchange

Tags

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by