How should I write a value such as "0.9 micromolar^-1.sec^-1" in the code?

2 ビュー (過去 30 日間)
nashyshan
nashyshan 2015 年 6 月 10 日
コメント済み: nashyshan 2015 年 6 月 10 日
Okay, so my question is if I have a value such as 0.9 micromolar^-1.sec^-1. How should I enter this value in the code.
Which of these is the correct one?
v = 0.9e-6
or
v = 0.9e6

採用された回答

Guillaume
Guillaume 2015 年 6 月 10 日
Matlab does not keep track of the unit. It's up to you to enter your value in the correct unit according to the calculation that use it.
So, to answer your question: it depends on what unit the following calculation expect. If the calculation expects the value in micromolar^-1 * sec^-1, then
v = 0.9
is correct. If your calculation expects molar^-1 * sec^-1, then
v = 0.9 / 1e-6
is correct. If it's expecting something else, then something else is correct.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by