How do I make a function work with vectors?
显示 更早的评论
I have this function
function tanH = TAN(x)
tanH(x)=((exp(x))-(exp(-x)))/((exp(x))+(exp(-x)))
end
and I need to change it so that I can get answers if x would be a vector. I've tried putting dots but can't get it to work. What should i be doing?
Thanks in advance.
采纳的回答
更多回答(1 个)
Torsten
2020-4-3
0 个投票
tanH = (exp(x)-exp(-x))./(exp(x)+exp(-x))
类别
在 帮助中心 和 File Exchange 中查找有关 Linear Algebra 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!