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

 採用された回答

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 件のコメント

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.
Muhammad Umar Khan
Muhammad Umar Khan 2024 年 1 月 28 日
編集済み: Muhammad Umar Khan 2024 年 1 月 28 日
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...
Stephen23
Stephen23 2024 年 8 月 25 日
"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.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGet Started with MATLAB についてさらに検索

製品

リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by