I am supposed to get answer as 949.5

1 visualización (últimos 30 días)
Jobin Geevarghese Thampi
Jobin Geevarghese Thampi el 30 de Abr. de 2022
Comentada: Image Analyst el 30 de Abr. de 2022

Respuestas (1)

Image Analyst
Image Analyst el 30 de Abr. de 2022
Try this:
if t > 0 && t < 100
h = t-10;
elseif t >= 100
h = 0.45 * t + 100;
end
What did you enter for the value of t? 1887.77777777778? That would give 949.5.
  2 comentarios
Image Analyst
Image Analyst el 30 de Abr. de 2022
OK, that looks right. It should run without errors, and if you pass in 1887.77777777778, that would give 949.5. See:
h = temp(1887.77777777778)
h = 949.5000
function h = temp(t)
if t > 0 && t < 100
h = t-10;
elseif t >= 100
h = 0.45 * t + 100;
end
end

Iniciar sesión para comentar.

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by