Filter löschen
Filter löschen

error horzcat CAT arguments dimensions

1 Ansicht (letzte 30 Tage)
joo
joo am 14 Nov. 2012
does anyone understand why am i getting this error:
??? Error using ==> horzcat CAT arguments dimensions are not consistent. Error in ==> code at 60 peaksK = [distancesK(1), peakssK, distancesK(end)];
when using this code:
(distancesK = 582x1 double)
[peakssK, iPeakssK] = findpeaks(distancesK);
peaksK = [distancesK(1), peakssK, distancesK(end)];
i have already used this code million times but now it is giving me this error. can anyone help me please? thank you very much.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 14 Nov. 2012
Bearbeitet: Andrei Bobrov am 14 Nov. 2012
peaksK = [distancesK(1); peakssK(:); distancesK(end)];
or
peaksK = [distancesK(1), peakssK(:).', distancesK(end)];
  2 Kommentare
Jan
Jan am 14 Nov. 2012
Or:
peaksK = [distancesK; peakssK; distancesK(end)];
joo
joo am 14 Nov. 2012
thank you so much for the both of you.it worked like this. thank you.
peaksK = [distancesK(1), peakssK.', distancesK(end)];
iPeaksK = [1, iPeakssK.', length(distancesK)];

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by