making a exponential from a for loop

조회 수: 5 (최근 30일)
Sebastian Sunny
Sebastian Sunny 2021년 12월 9일
댓글: Rik 2021년 12월 10일
Hi im trying to make 2 expontentials go from 1 - 10 as the exponential and 1- 8, might make better sense with the code;
for n = 1:10
k = 6*10^n;
for i = 1:8
Cd = 1.5*10^i;
end
end
  댓글 수: 3
Image Analyst
Image Analyst 2021년 12월 9일
편집: Image Analyst 2021년 12월 9일
Um, do you have a question? Like how to plot Cd vs. i or how to index Cd so it's not being overwritten every iteration?
If so, ask it after you re-read the posting guidelines:
for n = 1:10
k(n) = 6*10^n;
end
subplot(2, 1, 1);
plot(k, '.-', 'LineWidth', 2, 'MarkerSize', 30);
grid on;
xlabel('n', 'fontSize', fontSize)
ylabel('k', 'fontSize', fontSize)
for i = 1:8
Cd(i) = 1.5*10^i;
end
subplot(2, 1, 2)
plot(Cd, '.-', 'LineWidth', 2, 'MarkerSize', 30);
grid on;
xlabel('i', 'fontSize', fontSize)
ylabel('Cd', 'fontSize', fontSize)

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

채택된 답변

David Hill
David Hill 2021년 12월 9일
k=6*10.^(1:10);
Cd=1.5*10.^(1:8);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by