Can anyone help me with this in matlab

1 Ansicht (letzte 30 Tage)
Mehdi Fejzula
Mehdi Fejzula am 18 Mai 2022
Kommentiert: Mehdi Fejzula am 18 Mai 2022
  4 Kommentare
Image Analyst
Image Analyst am 18 Mai 2022
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 am 18 Mai 2022
@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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Steven Lord
Steven Lord am 18 Mai 2022
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.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by