what's the meaning of a number divide column vertor?

조회 수: 1 (최근 30일)
Xiao Lee
Xiao Lee 2019년 10월 19일
댓글: Stephen23 2019년 10월 21일
企业微信截图_157146742822.png
How did matlab get the ans of [0,0,0.3333] ?

채택된 답변

Stephen23
Stephen23 2019년 10월 19일
편집: Stephen23 2019년 10월 19일
"what's the meaning of a number divide column vertor?"
The mrdivide documentation explains at the top of the page that it will "Solve systems of linear equations xA = B for x". In your example you defined a system of lineaer equations with A = [1;2;3] and B=1, so the output you get is one solution of that system. This is easy to check:
>> A = [1;2;3];
>> B = 1;
>> x = B / A
x =
0.00000 0.00000 0.33333
>> x * A % should be == B
ans = 1
If you expect to simply divide 1 by the values of A then you need to use rdivide:
>> 1 ./ A
ans =
1.00000
0.50000
0.33333
To use MATLAB you need to learn the differences between array and matrix operations:
  댓글 수: 2
Xiao Lee
Xiao Lee 2019년 10월 19일
got it...Thx
Stephen23
Stephen23 2019년 10월 21일
Xiao Lee: I hope that it helped! Please don't forget to accept my answer!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

jeewan atwal
jeewan atwal 2019년 10월 19일
Please see the following link: https://in.mathworks.com/matlabcentral/answers/386947-when-using-matlab-you-can-actually-divide-a-scalar-by-column-vector-and-produce-a-result-how-does

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by