Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Trying to create a script which returns a t-value corresponding to a y-value input by the user, however calculations aren't being performed correctly/ not returning the right values.

1 Ansicht (letzte 30 Tage)
close all
clear all
prompt = 'What is the value of y : ';
y = input(prompt)
if y<10000
t = 200;
elseif 10000 <= y <= 20000
t = 200+0.1*(y-10000);
elseif 20000 <= y <= 50000
t = 1200+0.15*(y-20000);
elseif y>50000
t = 5700+0.25*(y-50000);
end
disp('The corresponding value of t is:')
disp(t)
Calculations being done by the last two "elseif" statements aren't correct. I'm not receiving any errors so I'm unsure what I'm doing incorrectly.
  2 Kommentare
Stephen23
Stephen23 am 7 Apr. 2020
Original question by Jhin Michael, copied from Google Cache:
"Trying to create a script which returns a t-value corresponding to a y-value input by the user, however calculations aren't being performed correctly/ not returning the right values."
close all
clear all
prompt = 'What is the value of y : ';
y = input(prompt)
if y<10000
t = 200;
elseif 10000 <= y <= 20000
t = 200+0.1*(y-10000);
elseif 20000 <= y <= 50000
t = 1200+0.15*(y-20000);
elseif y>50000
t = 5700+0.25*(y-50000);
end
disp('The corresponding value of t is:')
disp(t)
Calculations being done by the last two "elseif" statements aren't correct. I'm not receiving any errors so I'm unsure what I'm doing incorrectly.

Antworten (1)

darova
darova am 6 Apr. 2020
See the solution

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by