how to modify a variable data by scale function like data= scale(data); I have to modify scale function for variable data

how to modify a variable data by scale function like data= scale(data); I have to modify scale function for variable data
Actually i am writing a matlab code for training in Matlan onramp and didn't getting how to solve the above

 Respuesta aceptada

Given only the above information:
function scaled = scale(data)
scaled = data ./ 1000;
end
The 1000 should be adjusted to whatever is appropriate for your situation.

5 comentarios

FYI, in a more general case (not just writing a scaling function for a MATLAB Onramp exercise) the rescale and/or normalize functions could be useful.
how to recall scale function if it is unused.
function scaled = scale(data)
scaled = data ./ 1000;
end
When i try to submit my code for onramp exercise this message appears: Has the variable data been correctly modified by the scale function?
Looks like the exercise wanted some different scaling. Perhaps multiplying by 173, or dividing by 32768...
"Actually i am writing a matlab code for training in Matlan onramp and didn't getting how to solve the above"
The linked page already tells you the complete content of the SCALE function and exactly where to write it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.

Productos

Versión

R2023b

Preguntada:

el 25 de En. de 2024

Comentada:

el 25 de Ag. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by