tco1.PNG
greetings.
How do i plot the graph of A vesrs n for i varying from 3% to 12% in steps of 1% and n varying from 1 to 20. Where Ckwh=0.0001 and is a constant.Multiple graphs of A versus n in the same plot are required.
The result of the plot must look like the picutre below:
tco2.PNG

2 commentaires

Alex Sune
Alex Sune le 10 Juin 2019
What have you tried so far?
n = 1:20;
Ckwh = 0.0001;
for x = 0.03:0.01:0.12
% A = (1./((x*(1+x).^n))).*((((1+x).^n)-1)*0.0001*8760);
A = (1./((x*(1+x).^n))).*((((1+x).^n)-1)*Ckwh*8760);
end
plot (n, A)
hold on

Connectez-vous pour commenter.

 Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 10 Juin 2019

1 vote

Ckwh=0.0001;
n=1:2:20;
A=[];
for i=3:12
A=(((1+i).^n(:)-1)/(i*(1+i).^n(:)))*Ckwh*8760;
plot(n,A);
hold on;
end

5 commentaires

Tafadzwa Masocha
Tafadzwa Masocha le 11 Juin 2019
thanks, it worked
Tafadzwa Masocha
Tafadzwa Masocha le 11 Juin 2019
now on the graph i want to continue and put a code that gives me a value of A when n=10 etc
madhan ravi
madhan ravi le 11 Juin 2019
? Obviously homework.
KALYAN ACHARJYA
KALYAN ACHARJYA le 11 Juin 2019
@ Tafadzwa Next part: Do it yourself, which is best way of learning.
Jan
Jan le 11 Juin 2019
@Tafadzwa Masocha: If the original problem of this thread is solved, be so kind an mark the answer as "accepted". Thanks.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by