How to return a vector output for a vector input for a custom made function?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
John D'Errico
2017-12-31
编辑:John D'Errico
2017-12-31
Of course you can.
function y = myfun(x)
y = x;
end
This returns the vector y, given input vector x. WTP?
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!