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?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Westin Messer
el 30 de Sept. de 2017
Comentada: Ramnarayan Krishnamurthy
el 3 de Oct. de 2017
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 comentario
Ramnarayan Krishnamurthy
el 3 de Oct. de 2017
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.
Respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!