How can I go about calling another function and estimating a solution?

I have attached a matlab function, that returns a solution to a given system of equations with naive Gaussian elimination. I would like to write a script to call the function and estimate the solution for the following system of equations (attached image) with single presicion.
How can I go about doing that?
systemofeqns.png

 채택된 답변

Stephan
Stephan 2019년 2월 5일
편집: Stephan 2019년 2월 5일

0 개 추천

Your new script:
A = [3, 123456789, 8, 5; 2, 13,...];
b = [246913625, ...];
[x, det] = single(nvgss(A,b))
Best regards
Stephan

추가 답변 (0개)

질문:

2019년 2월 5일

편집:

2019년 2월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by