the meaning of basic matlab words

2 ビュー (過去 30 日間)
Osama Alkurdi
Osama Alkurdi 2020 年 2 月 6 日
コメント済み: Osama Alkurdi 2020 年 2 月 6 日
there is alot of words I see in the matlab online document but I wonder what is mean
the first word is argument
and the second word is command line
can you help me, please?

採用された回答

Jim Riggs
Jim Riggs 2020 年 2 月 6 日
an argument is a constant or variable that you provide to a function; e.g.
sin(x) % here x is the argument to the function sin.
The command line is the line in the command window where you type commands. After you type the command, you hit "enter" and then Matlab evaluates the command and displays the answer. Usually the command line has ">>" at the beginning; so if I type "sin(x) followed by <enter> on the command line, Matlab will calculate sin(x) and display the answer.
>> sin(0.1) <enter>
ans =
0.0998
  1 件のコメント
Osama Alkurdi
Osama Alkurdi 2020 年 2 月 6 日
thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by