is it possible to substitute multiplication and division by addition and subtraction respectively in MATLAB?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
is it possible to substitute multiplication and division by addition and subtraction respectively in MATLAB?
1 comentario
Walter Roberson
el 18 de Oct. de 2017
The quantities being manipulated, are they known to be positive?
Respuestas (1)
Steven Lord
el 18 de Oct. de 2017
Of course. Instead of typing:
x = 3*5;
type:
x = 3+5;
If that's not what you meant, explain in more detail what you want to do and we can suggest whether or not it's possible.
4 comentarios
Steven Lord
el 22 de Oct. de 2017
Sure.
x1 = 3*5;
x2 = 3+3+3+3+3;
Now I suspect doing this manual substitution is not what you have in mind or what you're being asked or told to do. Why don't you tell us the problem you're trying to solve and what constraints or requirements you have and we may be able to offer suggestions.
Walter Roberson
el 22 de Oct. de 2017
For example if this is a string manipulation question then it becomes a bit easier... provided that you do not have to deal with nested brackets.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!