for loop question (column vector?)

1 Ansicht (letzte 30 Tage)
Alexander Guillen
Alexander Guillen am 17 Mär. 2022
Beantwortet: David Hill am 17 Mär. 2022
I would like to solve the following equation using a for loop. I am able to perform a foor loop to calculate x2. However, when I get to the main equation, I have a problem because RT_w is a column vector. I am able to solve the equation similar as I would solve it in excel. But I want to implement a for loop . So in the end I should have three columns, one column when RT/W = 0.4 and so on.
RT_W = [0.4;0.5;0.6];
x1 = 0:0.01:1;
% x2 = 1-x1;
for k = 1:length(x1)
x2(k) = 1 - x1(k);
end

Akzeptierte Antwort

David Hill
David Hill am 17 Mär. 2022
Of course you will get NAN for log(0)
RT_W = [0.4;0.5;0.6];
x1 = 0:0.01:1;
x2=1-x1;
for k=1:length(RT_W)
dG_W(k,:)=RT_W(k)*(x1.*log(x1)+x2.*log(x2))+x1.*x2;
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