- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- and
- &
- cat
- cell2mat
- cellstr
- isempty
- isequal
- isvector
- lstsize
- maxi
- mini
- modulo
- ndims
- nthroot
- or
- |
- sign
- size
- sort
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
maxi
最大値
呼び出し手順
[m [,k]]=maxi(A) [m [,k]]=maxi(A,'c') [m [,k]]=maxi(A,'r') [m [,k]]=maxi(A,'m') [m [,k]]=maxi(A1,A2,...,An) [m [,k]]=maxi(list(A1,A2,...,An))
パラメータ
- A
実数ベクトルまたは行列.
- A1,...,An
実数ベクトルまたは行列の集合, 全て同じ大きさまたはスカラー.
説明
A
が実数ベクトルまたは行列の場合,
maxi(A)
はA
の最大要素となります.
[m,k]=maxi(A)
はこれに加えて最大値の添え字も出力します.
文字列型の2番目の引数に'r'
または
'c'
を指定できます:
'r'
はm(j)
が
Aのj
番目の列(A(:,j)
)の最大値となる
行ベクトルm
および
k(j)
が列j
の最大値を
含む添え字を取得するために使用されます.
'c'
はA
の行でこの二つの処理を
行うために使用されます.
'm'
は Matlabとの互換性維持のために使用されます.
m=maxi(A1,A2,...,An)
, ただし,
Aj
は全て同じ大きさの行列で,
m(i)= maxi( Aj(i)), j=1,...,n
とする時,
大きさ size(m)=size(A1)
となる
ベクトルまたは行列 m
を返します.
[m,k]=maxi(A1,A2,...,An)
は加えてベクトルまたは行列
k
も返します.
あるi
について,k(i)
は
最大値となる最初のAj(i)
の番号です.
[m,k]=maxi(list(A1,...,An))
は
[m,k]=maxi(A1,A2,...,An)
と等価な構文です.
例
Report an issue | ||
<< lstsize | Elementary Functions | mini >> |