sum error

2 Ansichten (letzte 30 Tage)
Rafael Freire
Rafael Freire am 7 Feb. 2012
Bearbeitet: Matt J am 2 Okt. 2013
Why i got this error?
shiftedC=-0.4
??? Error using ==> plus
Matrix dimensions must agree.
Error in ==> recog_pad_hmqc at 26
P1(:,1)=shiftedC+P1(:,1);
i only what to sum a value to the vector this part is inside a function .
  1 Kommentar
Walter Roberson
Walter Roberson am 7 Feb. 2012
At the command window, please end the command
dbstop if error
and then run the program. When it stops with the error, please check
size(shiftedC)
size(P1)

Melden Sie sich an, um zu kommentieren.

Antworten (1)

roopa bayareddy
roopa bayareddy am 7 Feb. 2012
Ofcourse for signal addition dimensions must agree.....am not getting your phrase ''sum a value to the vector''....if you wanna scale each element you can go for .*(element mult)...
or otherwise try shiftedC=-.4*ones(enter demesion)+p1(:,1)

Kategorien

Mehr zu Debugging and Analysis 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