Effacer les filtres
Effacer les filtres

The values of X should be distinct error.

2 vues (au cours des 30 derniers jours)
Volkan Yangin
Volkan Yangin le 6 Déc 2015
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?

Réponses (1)

Walter Roberson
Walter Roberson le 6 Déc 2015
Modifié(e) : Walter Roberson le 6 Déc 2015
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 commentaire
Volkan Yangin
Volkan Yangin le 6 Déc 2015
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...

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by