Solves a linear system of simultaneous equations

版本 1.0.0.0 (1.4 KB) 作者: Bruce Raine
Solves a linear system of simultaneous equations of n unknowns in n equations
429.0 次下载
更新时间 2010/4/8

查看许可证

simequation(a,b)
a must be a n x n matrix of coefficients and
b must be a n x 1 matrix of constants

Example usage to solve this system of 2 simultaneous linear equations in 2 unknowns:

2x + 4x = 3 and
3x + 5x = 6

%coefficient matrix..
>> cm = [ 2 , 4; 3, 5]
cm =
2 4
3 5
>>

%..calling the function to solve the simultaneous linear equations...pass the constants as a column vector.
>> simequation(cm,[3;6])

ans =

4.5000
-1.5000

% check answer
>> cm * ans

ans =

3.0000
6.0000

>>

引用格式

Bruce Raine (2024). Solves a linear system of simultaneous equations (https://www.mathworks.com/matlabcentral/fileexchange/27207-solves-a-linear-system-of-simultaneous-equations), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Linear Algebra 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0