how to calculate the unknown matrix

1 回表示 (過去 30 日間)
Virendra Kowale
Virendra Kowale 2021 年 2 月 13 日
コメント済み: Virendra Kowale 2021 年 2 月 13 日
clear all
close all
clc
s = -14.5 % syms s
A = [-3, 5, -7, 0; 0.5, -1.5, 0.5, -7.5; -5, 0, -3, 0; -0.5, -5, 0, -7];
B = [1, 0; 0, -1; -2, 0; 0, 1];
C = [1, 0, 0, 0; 0, -1, 0, 0];
D = [-1, 0; 2, 0];
M = (s*eye(4,4) - A);
P = [ M, -B; C, D]
k = rank(P)
d = det(P)
P*[x] = 0
I want to calculate the matrix [x]
  2 件のコメント
darova
darova 2021 年 2 月 13 日
Here is the answer
x = [0 0 0 0 0 0 0 0]'
Virendra Kowale
Virendra Kowale 2021 年 2 月 13 日
no its not the correct answer

サインインしてコメントする。

採用された回答

Alan Stevens
Alan Stevens 2021 年 2 月 13 日
  1 件のコメント
Virendra Kowale
Virendra Kowale 2021 年 2 月 13 日
thanks a lot

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by