Use user input in a function
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to use a user input variable in a function
like:
n=input('n')
k=3
f1=func(k)
function f1=func(x);
f1=n*x;
end
But when I write that code it gives me this message:
Unrecognized function or variable 'n'.
f=n*x;
How can I do this?
0 commentaires
Réponse acceptée
kei hin
le 6 Sep 2023
k=3
f1=func(k)
function f1=func(x);
n=input('n')
f1=n*x;
end
or
n=input('n')
k=3
f1=func(n,k)
function f1=func(n,x);
f1=n*x;
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Test Model Components dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!