Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.See the recommended documentation of this function
行列余弦関数
t = cosm(x)
実数または複素数の正方行列
cosm(x) は, 行列xの余弦行列 t=0.5*(expm(%i*x)+expm(-%i*x))です.
cosm(x)
x
t=0.5*(expm(%i*x)+expm(-%i*x))
A=[1,2;3,4] cosm(A)-0.5*(expm(%i*A)+expm(-%i*A))