Plotting a function error.

Hello i am tryinfg to plot the abs of Y:
x=-400:400;
Y=1./(j*x+3);
(abs(Y))
title('Fourier's transform of h(t)=e^(-3t)*u(t)');
xlabel('-400 < x < 400 (rad/sec)')
ylabel('Fouriers Transform of h(t)')
plot(Y)
but i am taking all the time the following error message:
Invalid expression. Check for missing
multiplication operator, missing or unbalanced
delimiters, or other syntax error. To construct
matrices, use brackets instead of parentheses.
Please help!

 Risposta accettata

madhan ravi
madhan ravi il 18 Dic 2018
Modificato: madhan ravi il 18 Dic 2018
EDITED
clear all
x=-400:400;
Y=1./(j.*x+3);
y=(abs(Y));
plot(x,y)
xlabel('-400 < x < 400 (rad/sec)')
ylabel('Fouriers Transform of h(t)')
title('Fouriers transform of h(t)=e^{-3t}*u(t)')

6 Commenti

Yeah that fix the problem but it still does not plot the whole thing. It just opens empty x and y labels
madhan ravi
madhan ravi il 18 Dic 2018
See edited answer
Still nothing ploted :(Screenshot_1.png
madhan ravi
madhan ravi il 18 Dic 2018
Try my edited answer one last time.
Yeah that worked at last! Thank you for your time!
madhan ravi
madhan ravi il 18 Dic 2018
Anytime :)

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su MATLAB in Centro assistenza e File Exchange

Prodotti

Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by