how define in matlab like c++
14 ビュー (過去 30 日間)
古いコメントを表示
hi i am new on matlab, i want to know who i define Constants like gravitation. in c++ it was super easy (define g=9.8) but in matlab i don't understand it.
1 件のコメント
James Tursa
2018 年 8 月 15 日
編集済み: James Tursa
2018 年 8 月 15 日
If you mean something equivalent to the "const" keyword attribute for a variable, then no MATLAB does not have this capability for basic numeric variables.
回答 (1 件)
Fangjun Jiang
2018 年 8 月 15 日
even easier
>> g=9.8
g =
9.8000
5 件のコメント
Walter Roberson
2018 年 8 月 15 日
編集済み: Walter Roberson
2018 年 8 月 15 日
See also https://www.mathworks.com/matlabcentral/answers/321973-how-to-have-presistent-physical-constants and https://www.mathworks.com/help/matlab/matlab_oop/properties-with-constant-values.html .
That is, you can create a class that has static methods that are defined as Constant. You can also create a package of functions that return constant values and import the package as needed.
参考
カテゴリ
Help Center および File Exchange で Software Development Tools についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!