Express vector of linear combinations as matrix product

3 ビュー (過去 30 日間)
Cameron Gregory
Cameron Gregory 2021 年 4 月 18 日
回答済み: Mahesh Taparia 2021 年 4 月 21 日
I have a column vector of symbolic linear combinations such as
How can I convert it to the form of a matrix product like

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2021 年 4 月 21 日
Hi
You can use diff function to express the differentials. For example, in your case
syms x(t) y(t)
a=5;
b=6;
c=7;
d=8;
eqns = [a b;c d]*[diff(x);diff(y)];
For more information, you can refer this documentation on solving linear differential equations. Hope it will help!

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by