Is there something wrong with this function?
Mostrar comentarios más antiguos
It is supposed to figure out if the number is whole or not. if not it rounds down, if it is it squares.
function [remainder]=data_modifier(data1)
remainder=rem(data1,1)
if remainder==0
sqrt(data1)
else
floor(data1)
end
end
2 comentarios
Kevin Chng
el 23 de Oct. de 2018
Editada: Kevin Chng
el 23 de Oct. de 2018
No error. Why?
However, change your output of function, i guess remainder is not the output you wanted.
madhan ravi
el 23 de Oct. de 2018
No it’s not correct if the input is float ,it fails
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!