필터 지우기
필터 지우기

How do I make an executable system solver?

조회 수: 2 (최근 30일)
Mike
Mike 2021년 11월 9일
답변: Steven Lord 2021년 11월 9일
I want to make an executable to import and solve the following system of equations from a text file using MATLAB:
[K]{u} = {F}
for example,
This is what I've tried:
u=cell2sym(textscan(fopen('arrDisp.txt'),'%s'))
F=cell2sym(textscan(fopen('arrForce.txt'),'%s'))
K=load arrStiffness.txt
s=solve(F==K*u)
st = structfun(@double, s, 'uniform', 0)
writetable(struct2table(st), 'sol.xlsx')
It does find the solution, but I cannot compile it because the vectors {F} and {u} contains symbols like u2 and u3.
So, is there any way to make it work?

답변 (1개)

Steven Lord
Steven Lord 2021년 11월 9일
Creation of symbolic expressions is not supported for use with MATLAB Compiler.

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by