Vector as input for plotting function
Ältere Kommentare anzeigen
Hello,
i would like to plot with red stars the function: sinc(x)= [sin(πx)]/[πx]
but x would be a vector given by the user
I really dont know how to ask the user to give me the vector and how can i use it as input for my function.
Antworten (1)
madhan ravi
am 2 Jun. 2020
Bearbeitet: madhan ravi
am 2 Jun. 2020
x = input('Values of x:') % feed in for example [1,2,3]
y = @sinc;
plot(x,y(x))
4 Kommentare
Eleftherios Venizelos
am 2 Jun. 2020
madhan ravi
am 2 Jun. 2020
Bearbeitet: madhan ravi
am 2 Jun. 2020
Huh? Is it hard for you to type that? I should type that for you comeon! Make some effort!
doc sinc
Eleftherios Venizelos
am 2 Jun. 2020
Bearbeitet: Eleftherios Venizelos
am 2 Jun. 2020
madhan ravi
am 2 Jun. 2020
clear sinc
y = @(x) sin(pi*x) ./ (pi*x);
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!