Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
dollar
($) 最後の添字
説明
$
記号は,配列の(行または列の)最後の添字を表します.
このため,この記号は,行または列の数と等しくなります.
この$
記号は,
$
を開始および終了タグで使用する
LaTeXテキストでも使用されます.
math_rendering_features_in_graphicも参照ください.
例
a=[1,2,3;4,5,6]; a($) b = [1 2 3;4 5 6;7 8 9]; // 最初の行の最後の要素(3)にアクセス b(1,$) // 2番目の行の最後の要素(8)にアクセス b($,2) //bの最後の要素(9)にアクセス b($,$) // 行列bの最後に行を追加 b($+1,:) = [1 1 1] // $記号をLaTeXデリミタとして使用 titlepage(['$\Huge\textrm{It is }\LaTeX:$';'$\Huge 2^2+1=\sqrt{25}$'])
参照
- math_rendering_features_in_graphic — LaTeX またはMathML言語によりScilabグラフィックスで数式を表示する.
- size — オブジェクトの大きさ
- length — オブジェクトの長さ
Report an issue | ||
<< comparison | Scilab keywords | dot >> |