why it not a number
Afficher commentaires plus anciens
i try to calculate the integration but it not work as i expected. it should 50 as my calculator but not
syms T;
Fx=3*T.^2-12*T+16;
Fy=2-9*T+6*T.^2-T.^3;
dx=diff(Fx, T);
dy=diff(Fy, T);
dx=dx.^2;
dy=dy.^2;
l=dx+dy;
l=sqrt(l);
i=int(l,T,0,5);
>> i
i =
int(3*((6*T - 12)^2/9 + (3*T^2 - 12*T + 9)^2/9)^(1/2), T)
Réponses (1)
syms T;
Fx=3*T.^2-12*T+16;
Fy=2-9*T+6*T.^2-T.^3;
dx=diff(Fx, T);
dy=diff(Fy, T);
dx=dx.^2;
dy=dy.^2;
l=dx+dy;
l=sqrt(l);
i=int(l,T,0,5);
i
double(i)
Catégories
En savoir plus sur NaNs dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
