Match function in matlab
28 次查看(过去 30 天)
显示 更早的评论
Hello,
I am looking for a function that corresponds to the excel "match" function.
I have an array of (n,32) where n is sated in for loop function as a number of completed loops (so it differs).
DataOutput = zeros(length(phiAStart:phiAStep:phiAEnd),32);
I would like to find the smallest value in column 32 (y) and get the corresponding value in column 1 (x) where y=f(x).
DataOutput(colector,1) = x;
DataOutput(colector,32) = y;
I can not resolve a function (to get x) having y because it's numerically calculated polynomial so I thought about something similar that MATCH function from excel.
Is there any similar function in Matlab or simple script that can be introduced?
I will be thankful for any suggestions or codes that may work.
0 个评论
采纳的回答
Mateusz Brzezinski
2020-2-20
编辑:Mateusz Brzezinski
2020-2-20
2 个评论
Steven Lord
2020-2-20
That will give you all the matching x values. Do you want that or do you want the first such match?
更多回答(2 个)
Steven Lord
2020-2-20
Call the min function with two outputs. Use the second output to retrieve the corresponding value.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 JSON Format 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!