Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

how to show all the single in my legend

1 vue (au cours des 30 derniers jours)
areej abdulshaheed
areej abdulshaheed le 15 Avr 2019
Clôturé : MATLAB Answer Bot le 20 Août 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 commentaires
madhan ravi
madhan ravi le 15 Avr 2019
Modifié(e) : madhan ravi le 15 Avr 2019
Upload your code(just the legend part)
areej abdulshaheed
areej abdulshaheed le 15 Avr 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')

Réponses (1)

areej abdulshaheed
areej abdulshaheed le 15 Avr 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')

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by