Hello,
If I want to write the code of this simulink model in matlab how can I do it?
x, y and z are vectors of length=6000 for each one of them.
I want to calculate the value of z at each time, I used:
for k=1:6000
func = sum(x(1:k)) - sum(y(1:k)); %x and y are discrete variables
z(k)= Constant*func*Te; %Te represents the sample time
end