필터 지우기
필터 지우기

Create equations in a loop

조회 수: 1 (최근 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 CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by