Effacer les filtres
Effacer les filtres

Dividing the values of a vector

1 vue (au cours des 30 derniers jours)
Anna Mogilevskaja
Anna Mogilevskaja le 3 Déc 2019
Hello,
I have the following question:
this is my code:
A=[1 1.1; 1.1 1]
l= [sym(2)/sym(3); sym(1)/sym(3)]
w=1
B=[1.09 1.44; 1.44 0.99]
r=linspace(0,1,100)
for k = 1:numel(r)
p(:,k)=(inv(B-(1+r(k))*A))*l
end
The p vector consists out of p1 and p2. After the loop is finished I would like to calculate p1/p2 (also in a loop as I would like to plot p1/p2 against r). Unfortunately, I could not find any references to this case.
Does anyone have a solution for dividing the values of a vector.
Greetings,
Anna
  2 commentaires
Stephane
Stephane le 3 Déc 2019
Maybe try p(1,:) ./ p(2,:), and then plot(r, p(1,:) ./ p(2,:))
Anna Mogilevskaja
Anna Mogilevskaja le 3 Déc 2019
I habe tried this but it did not work out yet:
A=[1 1.1; 1.1 1]
l= [sym(2)/sym(3); sym(1)/sym(3)]
w=1
B=[1.09 1.44; 1.44 0.99]
r=linspace(0,1,100)
for k = 1:numel(r)
p(:,k)=(inv(B-(1+r(k))*A))*l
end
for k = 1:numel(r)
q(:,k)=(p(1,:)(k)./ p(2,:)(k)
end
figure
plot(r,q)
grid
xlabel('r')
ylabel('q(r)')

Connectez-vous pour commenter.

Réponses (2)

Shota Kato
Shota Kato le 3 Déc 2019
q can be calculated as follows
q = p(1,:) ./ p(2,:)
or
q(:,k) = p(1,k) / p(2,k)
Then, you can plot q against r.

Star Strider
Star Strider le 3 Déc 2019
Try this:
A=[1 1.1; 1.1 1];
l = [2; 1]/3; % Create As Column Vector
w=1;
B=[1.09 1.44; 1.44 0.99];
r=linspace(0,1,100);
for k = 1:numel(r)
p(:,k)=(B-(1+r(k))*A)\l; % Replace ‘inv’ Call With ‘\’
end
p_div = p(1,:)./p(2,:);
figure
plot(r, p_div)
grid
xlabel('$r$', 'Interpreter','latex')
ylabel('$\frac{p_1}{p_2}$', 'Interpreter','latex')
1Dividing the values of a vector - 2019 12 03.png

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by