The values of X should be distinct error.

1 回表示 (過去 30 日間)
Volkan Yangin
Volkan Yangin 2015 年 12 月 6 日
編集済み: Walter Roberson 2015 年 12 月 6 日
Hi everbody.
ttx=1;
for ggx=1:1:numel(zaman);
n_motor_tamyuk_cevrimsirali(1,ggx)=interp1(tum_veriler_tamyukgucvolkan_sirali,tum_veriler_tamyukdevirvolkan_sirali,abs(Ne(1,ttx)));
ttx=ttx+1;
end
my "tum_veriler_tamyukgucvolkan_sirali" matrix is linear, but "tum_veriler_tamyukdevirvolkan_sirali" and "abs(Ne) matrixs are not linear so matlab gives me tihs error. How can i MAKE this interpolation?

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 12 月 6 日
編集済み: Walter Roberson 2015 年 12 月 6 日
Your tum_veriler_tamyukgucvolkan_sirali has some duplicate values in it.
st = sort(tum_veriler_tamyukgucvolkan_sirali);
dv_idx = find(diff(st) == 0);
if ~isempty(dv_idx) %corrected
fprintf('there are duplicate occurrences of\n');
fprintf('%g ', st(dv_idx) );
fprintf('\n');
end
  1 件のコメント
Volkan Yangin
Volkan Yangin 2015 年 12 月 6 日
Thank you, Walter Roberson. Today i was working on this program and i have found another solution method for my problem. But your code will be required again. Thanks a lot...

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by