construction of a matrix

1 Ansicht (letzte 30 Tage)
samia
samia am 29 Apr. 2011
I just filling a matrix T by following this code normally the length is same to Ac but it return length(Ac)+1
(size(Ac)=[1 125] and size(Ac_estm)=[1 125])
P=size(Ac,2); T=[]; for (p=1:P) if Ac(p) < Ac_estm(p) T(p)=0;
else
T(p)=1;
end
T=[T T(p)];
end
==>size(T)=[1 126] why??

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 29 Apr. 2011
this cycle is not needed
T = Ac >= Ac_estm; % T is logical class
T = +(Ac >= Ac_estm); % T is double
but with loop
T = zeros(size(Ac));
for p=1:length(Ac)
if Ac(p) < Ac_estm(p)
T(p)=0;
else
T(p)=1;
end
end

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by