How to plot the function y=sin(t)/t for -4*pi<x<4*pi?
Afficher commentaires plus anciens
I m having trouble finding the plot for this function in matlab, with no plot as a result. I tried the following code.
clear;clc;clf;
t=-4*pi : 0.01 : 4*pi;
y=sin(t)/t;
plot(t,y)
but i m not getting output.
1 commentaire
Torsten
le 2 Avr 2019
y=sin(t)./t;
Réponses (2)
Stephan
le 2 Avr 2019
Hi,
at least two ways possible:
- Symbolic:
syms t
fplot(sin(t)/t,[-4*pi, 4*pi])
- Numeric:
t = linspace(-4*pi,4*pi);
y = sin(t)./t;
plot(t,y)
Therefore - as Torsten aready mentioned - use elementwise operator:
./
Best regards
Stephan
Shubham Kumar Thakur
le 7 Déc 2020
0 votes
syms t
fplot(sin(t)/t,[-4*pi, 4*pi])
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!