what function should I use in order for the matlab to evaluate the entered number if it is proper fraction, improper fraction, or Whole number?

9 views (last 30 days)
input('input any fraction?');
Unable to run the 'fevalJSON' function because it calls the 'input' function, which is not supported for this product offering.
fraction = 1/ 2;
if (fraction == 1)&& (1>2)
disp('proper fraction.');
elseif (fraction == 1) && (1>=2 )
disp('whole number');
else
fprintf('improper fraction');
end

Answers (1)

Cris LaPierre
Cris LaPierre on 20 Sep 2021
Edited: Cris LaPierre on 20 Sep 2021
You appear to be using MATLAB Grader, which does not support user interactions like input. You will need to find a different way of obtaining the fraction. This is likely a function-type problem, so you need to write a function. The fraction is likely supposed to be an input to the function.
Learn more about creating MATLAB functions here: https://www.mathworks.com/help/matlab/ref/function.html

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!