Info

此问题已关闭。 请重新打开它进行编辑或回答。

how to show all the single in my legend

1 次查看(过去 30 天)
I have problem with my legend. it hide some of data. I don't know why
can anyone help me to fix this problem
legend problem.png
  2 个评论
madhan ravi
madhan ravi 2019-4-15
编辑:madhan ravi 2019-4-15
Upload your code(just the legend part)
areej abdulshaheed
areej abdulshaheed 2019-4-15
s0=[zeros(1,9) 1 zeros(1,34)]
tspan=(0:0.1:50);
options=odeset('absTol',[1e-10]);
[t,s]=ode15s(@matg,tspan,s0,options);
Q1=s(:,1); Q2=s(:,2); Q3=s(:,3);
Q4=s(:,4); Q7=s(:,7);
subplot 221
plot(t,Q1,'--',t,Q4,'.-',t,Q7)
xlabel('time'), ylabel('joint angle [rad]')
legend('\phi1','\phi4','\phi7')

回答(1 个)

areej abdulshaheed
areej abdulshaheed 2019-4-15
these my codes
s0=[zeros(1,9) 1 zeros(1,34)]
tspan=(0:0.1:50);
options=odeset('absTol',[1e-10]);
[t,s]=ode15s(@matg,tspan,s0,options);
Q1=s(:,1); Q2=s(:,2); Q3=s(:,3);
Q4=s(:,4); Q7=s(:,7);
subplot 221
plot(t,Q1,'--',t,Q4,'.-',t,Q7)
xlabel('time'), ylabel('joint angle [rad]')
legend('\phi1','\phi4','\phi7')

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by