how write open interval and colse interval by matalb ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
work wolf
el 15 de Mzo. de 2016
Comentada: Walter Roberson
el 3 de Sept. de 2016
how write open interval and colse interval by matalb ? because when write x=0:3 don't give same mean
0 comentarios
Respuesta aceptada
Walter Roberson
el 16 de Mzo. de 2016
You need to reach in to the Symbolic engine and use the facilities of MuPAD that are not made available to the MATLAB interface.
For example,
x = evalin(symengine, 'Dom::Interval([0], [3])');
The mean of this certainly would be the same as mean(0:3) and the same as mean(linspace(0,3,50000)) .
1 comentario
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!