for loop in simulaink as matlab function

1 visualización (últimos 30 días)
vishnuvardhan naidu tanga
vishnuvardhan naidu tanga el 11 de Dic. de 2019
Is there any way to use this code as a matlab function in simulink?
P=zeros(0,n+1);
P(1) = P_in;
CR = (P_out/P_in)^(1/(n));
for i = 2:n
P(i) = CR*P(i-1);
P(i+1) = CR*P(i);
end

Respuestas (0)

Categorías

Más información sobre Startup and Shutdown 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!

Translated by