perform interpolation each row of a matrix
5 ビュー (過去 30 日間)
古いコメントを表示
i have a matrix A with one million rows, and each row is monotonic increase. the value in each row is x.
The interpolation is perform to obtain one million yi for each row given a constant xi value (xi is the same for each row) and given an array y (y is also the same for each row). is there an efficient way to get yi other than using loop.
right now i have to use loop like this:
for i = 1:1e6
yi(i) = interpi(A(i,:), y, xi);
end
0 件のコメント
回答 (1 件)
Fangjun Jiang
2023 年 2 月 3 日
編集済み: Fangjun Jiang
2023 年 2 月 3 日
You can use interp1() directly for this without for-loop.
x=1:10;
A=(1:10)'+(1:10);
xi=5;
y=interp1(x,A',xi)
5 件のコメント
Fangjun Jiang
2023 年 2 月 3 日
I was taking some guesses on your question. Now you need to clarify these. "the value in each row is x", "in my question, matrix A is x", "but you matrix A is y".
The best way is to provide a complete numerical example, including the value for x, xi, y.
You don't need to provide one million rows. Three row is sufficient.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!