Info

This question is closed. Reopen it to edit or answer.

how to show all the single in my legend

1 view (last 30 days)
areej abdulshaheed
areej abdulshaheed on 15 Apr 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comments
madhan ravi
madhan ravi on 15 Apr 2019
Edited: madhan ravi on 15 Apr 2019
Upload your code(just the legend part)
areej abdulshaheed
areej abdulshaheed on 15 Apr 2019
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')

Answers (1)

areej abdulshaheed
areej abdulshaheed on 15 Apr 2019
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!