Vector as input for plotting function

6 vues (au cours des 30 derniers jours)
Eleftherios Venizelos
Eleftherios Venizelos le 2 Juin 2020
Commenté : madhan ravi le 2 Juin 2020
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.

Réponses (1)

madhan ravi
madhan ravi le 2 Juin 2020
Modifié(e) : madhan ravi le 2 Juin 2020
x = input('Values of x:') % feed in for example [1,2,3]
y = @sinc;
plot(x,y(x))
  4 commentaires
Eleftherios Venizelos
Eleftherios Venizelos le 2 Juin 2020
Modifié(e) : Eleftherios Venizelos le 2 Juin 2020
No, i mean that it goes:
x = input('Values of x:') % feed in for example [1,2,3]
y=@sinc;
sinc= [sin(πx)]/[πx];
plot(x,y(x))
right?
madhan ravi
madhan ravi le 2 Juin 2020
clear sinc
y = @(x) sin(pi*x) ./ (pi*x);

Connectez-vous pour commenter.

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by