keep just positive or just negetive answer of acos?
13 次查看(过去 30 天)
显示 更早的评论
I have arccos and I want to keep just negative answer of it? how can I do it?(there are two answer)
0 个评论
采纳的回答
jonas
2018-8-12
If A is a vector with your answers. Remove non-negatives by
A(A>=0)=[]
2 个评论
jonas
2018-8-13
编辑:jonas
2018-8-13
I don't understand. What function did you use? The fact that you want to keep only one value implies that you have two, hence my simple fix.
MATLAB's acos however only returns a single positive solution. If you want a negative solution, just multiply by -1, as cos(x)=cos(-x)
"For real elements of x in the interval [-1,1], acos(x) returns real values in the interval [0,pi]." - the doc
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Manage Products 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!