統計
MATLAB Answers
7 質問
0 回答
ランク
of 157,897
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How to generate matrix as shown below?
How Can I generate specific matrix, Such as for n = 3, it shoud generate below three matrices. % for example n = 3 A = [0 ...
4年以上 前 | 1 件の回答 | 0
1
回答質問
How to find inverse of large size matrix.?
I have a program in which I have need to find inverse of large size square matrix..e.g. [m n]=[800 800 ] It takes longer to ...
7年以上 前 | 2 件の回答 | 0
2
回答質問
how to get numerical value from symbolic variables equation
I have the following code % defining T1, T2, T3, T4, T5 T = sym('T',[1 5]); Eqn = 5*T(3); T(3)= 6; Now each ti...
7年以上 前 | 2 件の回答 | 0
2
回答質問
How to use function equationTomatrix in matlab2012 b.? it shows error for following code
I have following symbolic variables % T1 T2 T3 T = sym('T',[1 3]) Eqn = 3*T(1) - 5*T(2) + 2*T(3)==5 [A b]= Equation...
7年以上 前 | 1 件の回答 | 0
1
回答質問
How to get coefficients of equation defined by symbolic variable equation.?
I have number of symbolic variable defined by as follow: % a1, a2, a3, a4, a5 a = sym('a',[1 5]); Now I have an equati...
7年以上 前 | 1 件の回答 | 0
1
回答質問
How to solve matrices equation AX + BX' = C, DX + EX' = F, GX + HX' = J simultaneously..?
I need to solve following set of matrices equations in matlab. A(m,n)*X(m,n) + B(m,n)X'(m,n) = C(m,n); D(1,n)*X(:,1) + E(...
7年以上 前 | 0 件の回答 | 0
0
回答質問
How can I solve A*X + X*B = C equation for X? where A, B&C are 2*2 matrixes.
A = [1 1;2 3] B= [5 6;7 8] C = [11 12;13 14] Syms X; Eqn = A*X + X*B == C; solve(Eqn,X); % I'm facing difficulties to defi...
7年以上 前 | 3 件の回答 | 0