When I run this code "FDx = Empty sys: 0 by 1" and FDy says the same thing. I think it because there is a Z component to M. I found that when the Z component is zero it gives a number for FDx and FDy. Does anyone know how to fix this?

조회 수: 2 (최근 30일)
R_AR = [0,7,5]
R_AB = [0,0,12]
F = [6,9,-1]
digits(4)
syms FDx FDy FDz;
M = vpa(cross(R_AB,[FDx, FDy, FDz])) + vpa(cross(R_AR,F));
[FDx, FDy] = solve(M)
  댓글 수: 1
Ramnarayan Krishnamurthy
Ramnarayan Krishnamurthy 2017년 10월 3일
The equations you are trying to solve are inconsistent. So, there exists no solution that satisfy them. That is the reason FDx and FDy are empty.
If you want to compute FDx and FDy despite this, you could ignore the 'z' terms and then call 'solve'. But, again this system is inconsistent.

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by