Can anyone help me with this in matlab

조회 수: 1 (최근 30일)
Mehdi Fejzula
Mehdi Fejzula 2022년 5월 18일
댓글: Mehdi Fejzula 2022년 5월 18일
  댓글 수: 4
Image Analyst
Image Analyst 2022년 5월 18일
Why are there letters after the numbers in the temperature row? Do you need to somehow get values for the letters f, g, and h? So is 1gh equal to 1 * g * h?
Steven Lord
Steven Lord 2022년 5월 18일
@Image Analyst I'm guessing those are the digits in the student identification number. That way while the implementation may be the same for each student, since they start with different data they can't just copy some other student's answer (unless their student ID number happens to give the same final result as the other student's ID number, which is unlikely.)
So with the ID number given at the end of the document, 10043052, a is 1, b and c are 0, d is 4, etc.

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

채택된 답변

Steven Lord
Steven Lord 2022년 5월 18일
if you could help me with the link between the days and the temperature per example
Okay, so you need help assembling the vector [2f, 2g, 2h, 2f, 2g, 2h, ...]? Build the first part using f, g, and h:
f = 9;
g = 2;
h = 8;
firstThreeDays = 20 + [f, g, h]
firstThreeDays = 1×3
29 22 28
Then use the repmat function to replicate those three days into a vector as long as you need it to be.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by