フィルターのクリア

Using interp1 on a function that is not monotonic increasing

22 ビュー (過去 30 日間)
jgillis16
jgillis16 2015 年 9 月 7 日
回答済み: Steven Lord 2015 年 9 月 7 日
I need to use the interp1 function on my two data sets, labeled x and y.
I wrote the following code:
yDesired = interp1(x,y, 0.009);
But, I receive the following error:
Error using griddedInterpolant
The grid vectors are not strictly monotonic increasing.
Error in interp1 (line 183)
F = griddedInterpolant(X,V,method);
Is there any way around this?

回答 (2 件)

Stephen23
Stephen23 2015 年 9 月 7 日
編集済み: Stephen23 2015 年 9 月 7 日

Steven Lord
Steven Lord 2015 年 9 月 7 日
The X input to INTERP1 must be monotonic increasing. The Y input does not need to be monotonic increasing. Call SORT with two outputs and X as input; the first output is the reordered X vector and the second output will let you reorder Y to match the reordered X.

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by