clmodal.m

来自「Programs for the book Advanced Engineeri」· M 代码 · 共 8 行

M
8
字号
function [M,Dlam]=clmodal(A)
% CALL: [M,Dlam]=clmodal(A) computes a modal matrix M and
%   the matrix Dlam=(M^-1)*A*M
[M Dlam]=eig(A);      % M is Modal matrix
%                       Dlam is diagonal   
%
% Notice that this function is implemented with only one
%   MATLAB command

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?