How to return a vector output for a vector input for a custom made function?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Avishek Mondal
le 31 Déc 2017
Modifié(e) : John D'Errico
le 31 Déc 2017
Hi, I know from experience that some Matlab functions like cos will also return a vector if it's input is a vector, i.e. cos(vector) is a vector. Is it possible to do the same with a custom function I've written myself? I am asking this because I want to avoid writing for loops because in Matlab for loops take a long time to execute.
0 commentaires
Réponse acceptée
John D'Errico
le 31 Déc 2017
Modifié(e) : John D'Errico
le 31 Déc 2017
Of course you can.
function y = myfun(x)
y = x;
end
This returns the vector y, given input vector x. WTP?
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!