skewpart.m
来自「本压缩文件提供了matlab的时间序列工具箱」· M 代码 · 共 9 行
M
9 行
function S = skewpart(A)
%SKEWPART Skew-symmetric (skew-Hermitian) part.
% SKEWPART(A) is the skew-symmetric (skew-Hermitian) part of A,
% (A - A')/2.
% It is the nearest skew-symmetric (skew-Hermitian) matrix to A in
% both the 2- and the Frobenius norms.
S = (A - A')./2;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?