how to define a symbolic variable with type ???
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i want to declare a symbolic variable S and define the type as REAL. MATLAB takes the default type as COMPLEX variable.
0 comentarios
Respuestas (1)
Steven Lord
el 23 de Oct. de 2015
To tell Symbolic Math Toolbox to assume x is a real variable, use this code:
syms x real
or use ASSUME on the symbolic variable after the fact (see "help assume" for more information.)
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!