Dear all,
is it possible to change the expression of a MACRO_VARIABLE outside of the .mod file?
For example, I would like to be able to specify whether “deterministic_simul” is true or false in another Matlab file. Is that feasible?
@#define deterministic_simul = false
@#if deterministic_simul == true
@#include “ScenariosDeterministic.m”
@#else
@#include “ScenariosStochastic.m”
@#endif
Thanks!