How to solve an equation with two vectors

1 次查看(过去 30 天)
I am trying to make vector equations for line segments. I have both the vectors and the equation for it, but it wont let me use fprintf to display it. please show me what to fix!
syms t
A=[-7,3,-1]; B=[1,0,5];
v=((1-t)*A)+(t*B);
fprintf('The vector equation for the line segment is <%g,%g,%g>\n',v)
clear;

采纳的回答

Ameer Hamza
Ameer Hamza 2018-6-27
'%g' is for numeric type, since your v vector is sym, therefore, you need to use '%s'
syms t
A=[-7,3,-1]; B=[1,0,5];
v=((1-t)*A)+(t*B);
fprintf('The vector equation for the line segment is <%s,%s,%s>\n',v)
clear;

更多回答(0 个)

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by