Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by