Sure, you can have them set to zero or one or some other input data or function. For a single input system you would define a time vector say: t=[0:0.001:10]'; Then for the single input you would define u of the same dimention and say a value of one using u=ones(t); If you had a multiple input system then that would form a matrix say u1=[u,u]; for two inputs. if you wanted something different in the second input like a sine wave then you would define u2=sin(t); u1=[u,u2]; Then when you simulate you would
use t and u1 as the simulation variables.
Usually you would define this in a script in a text file like: "mysim.ms"
tf=10;
dt=0.001;
t=[0:dt:tf]';
u=ones(t);
u2=sin(t);
u1=[u,u2];
y=sim("mysuperblock", t, u, {simoptions});
grob=plot(t,y, {strip})?
I am not certain that this answers your question if not let me know.
Garrett Thurston
gthurston@foliage.com
Phone: 781.993.5540