The values of X should be distinct error.

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by