私はmatlabが格納できる多数の要素の2つの配列を持っています。問題は、関数interp1を使用して補間するときに発生します。 「out of memory - interp1のエラー(122行目) (diff(X)<)」というエラーが表示される オプションは何ですか?interp1を使用しているときにメモリーが不足しています。 Matlab
time; % Vector, length(time)=91542016
Results; % Vector with the results for each time step, length(Results)=91542016
A=1:1:(10^7); %Vector of positions in which I want to interpolate
E=interp1(time,Results,A,'previous'); %Vector in which I want to store the interpolation
あなたは私たちにあなたが使用しているコードを表示することができますか? – Suever
したい補間のタイプ(リニア?)に応じて、ループを使用することができます。遅いですが、メモリ効率が良い –
"以前の"型補間を – Fisiquin