Can anyone help me with this in matlab

1 visualización (últimos 30 días)
Mehdi Fejzula
Mehdi Fejzula el 18 de Mayo de 2022
Comentada: Mehdi Fejzula el 18 de Mayo de 2022
  4 comentarios
Image Analyst
Image Analyst el 18 de Mayo de 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 el 18 de Mayo de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Steven Lord
Steven Lord el 18 de Mayo de 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.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by