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 Kommentare

Alex Sune
Alex Sune am 10 Jun. 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

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 10 Jun. 2019

1 Stimme

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 Kommentare

Tafadzwa Masocha
Tafadzwa Masocha am 11 Jun. 2019
thanks, it worked
Tafadzwa Masocha
Tafadzwa Masocha am 11 Jun. 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 am 11 Jun. 2019
? Obviously homework.
KALYAN ACHARJYA
KALYAN ACHARJYA am 11 Jun. 2019
@ Tafadzwa Next part: Do it yourself, which is best way of learning.
Jan
Jan am 11 Jun. 2019
@Tafadzwa Masocha: If the original problem of this thread is solved, be so kind an mark the answer as "accepted". Thanks.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-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