multiple plots on same axis

조회 수: 1 (최근 30일)
Tafadzwa Masocha
Tafadzwa Masocha 2019년 6월 10일
댓글: Jan 2019년 6월 11일
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
Alex Mcaulley
Alex Mcaulley 2019년 6월 10일
What have you tried so far?
Tafadzwa Masocha
Tafadzwa Masocha 2019년 6월 11일
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

댓글을 달려면 로그인하십시오.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 10일
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
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 11일
@ Tafadzwa Next part: Do it yourself, which is best way of learning.
Jan
Jan 2019년 6월 11일
@Tafadzwa Masocha: If the original problem of this thread is solved, be so kind an mark the answer as "accepted". Thanks.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by