Loop and Conditional statements

조회 수: 3 (최근 30일)
James Bowler
James Bowler 2021년 10월 7일
댓글: Rik 2021년 10월 7일
Create a 100 element vector of x. Calculate the value of y to the corresponding value of x using loop and conditional statements
  댓글 수: 2
James Bowler
James Bowler 2021년 10월 7일
been struggling with this for a bit now, some help would be appreciated
Rik
Rik 2021년 10월 7일
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks). If your main issue is with understanding the underlying concept, you may consider re-reading the material you teacher provided and ask them for further clarification.

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

답변 (1개)

Walter Roberson
Walter Roberson 2021년 10월 7일
x = linpace(0, L/2, 100);
mask = 0 <= x & x <= L/2;
y(mask) = 16 .* x(mask).^3 - 24 .* L .* x(mask).^2 etc
y(~mask) = 8 .* x(mask).^3 - 24 .* L .* x(mask).^2 etc
  댓글 수: 2
James Bowler
James Bowler 2021년 10월 7일
Thanks for the help, it is required to use conditional statements and loops
Rik
Rik 2021년 10월 7일
Easy to satify that requirement:
for n=1
if true
x = linpace(0, L/2, 100);
mask = 0 <= x & x <= L/2;
y(mask) = 16 .* x(mask).^3 - 24 .* L .* x(mask).^2 etc
y(~mask) = 8 .* x(mask).^3 - 24 .* L .* x(mask).^2 etc
end
end

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by