values calculated from avector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
saja mk
el 13 de Oct. de 2020
Respondida: Sudhakar Shinde
el 13 de Oct. de 2020
s=[a b]
how can calculate s1 and s2, if s1=exp(a)and s2=exp(b)?
0 comentarios
Respuesta aceptada
Sudhakar Shinde
el 13 de Oct. de 2020
exp fumcion is available in matlab. The s1 & s2 syntax you written can directly be used.
s=[a b];
s1=exp(s(1));
s2=exp(s(2));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!