What does the following MATLAB code do?
Mostrar comentarios más antiguos
>> x=7.123456789;
>> n=7;
>> delta=0.5;
>> r=x*10^n+delta;
>> r=fix(r);
>> r=r/10^n;
>> disp(r)
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Operators and Elementary Operations 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!