Create equations in a loop

4 ビュー (過去 30 日間)
Eddy
Eddy 2021 年 1 月 15 日
回答済み: KSSV 2021 年 1 月 15 日
Hi All
I want to create a system of equations from matrices and solve them. My inputs are as follows
Inputs
K = 275 * 275 matrix
F = 275 * 1 matrix
Solve for t, such that, K*t = F.
I tried the following lines but it results in an error.
syms t
Z = zeros(size(F));
for i = 1:numel(Z)
eqn = F(i)==K(1,:) * t;
Z(i) = double(vpasolve(eqn,t));
end
The equation line when displayed does not seem to be correct. Any help is highly appreciated.
Thanks

回答 (1 件)

KSSV
KSSV 2021 年 1 月 15 日

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by