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 Comments

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

Sign in to comment.

 Accepted Answer

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 Comments

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

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!