Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Jan 2024
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.
  4 commentaires
Walter Roberson
Walter Roberson le 28 Jan 2024
Looks like the exercise wanted some different scaling. Perhaps multiplying by 173, or dividing by 32768...

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by