Solving Equaiton with multplying power
이전 댓글 표시
I have a equation given below, I need to solve this equaiton in matlab and find base X,Y,Z . There is solution given.

In matlab, I try to setup base but I cant figure out exactly. How I setup this equation in Matlab ? Thanks for help.
My matlab code for design base of the equation :
clear; clc;
[0 1 1^-1 ] % B*C^(-1)
[0 1 0] % B
[1 1^-3 0] %A*B^-3
[0 1^3 1^-1] %B^3*C^-1
채택된 답변
추가 답변 (1개)
LHS=[0 0 1;
-1 0 0;
1 1 -3];
RHS=[0;1;-3];
XYZ=LHS\RHS
카테고리
도움말 센터 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


