Borrar filtros
Borrar filtros

Run the second programme in the current execution

2 visualizaciones (últimos 30 días)
manish sharma
manish sharma el 1 de Jul. de 2012
Hi,
I have a code (.m) file stored on my PC. Now I want to run this file in between the execution of my current programme, like:
for i=1:3
for j=1:2
%run the particular (.m) file saved on PC
end
end
Please help.
Thanks!

Respuesta aceptada

per isakson
per isakson el 1 de Jul. de 2012
Editada: per isakson el 1 de Jul. de 2012
Assume the name of your m-file is my_code.m. Try
for i=1:3
for j=1:2
% run the particular (.m) file saved on PC
my_code
end
end
Your code is that a script or a function? Do you need to pass data to my_code?
  1 comentario
manish sharma
manish sharma el 1 de Jul. de 2012
That was simpler than I expected :)
Thanks a lot Isakson!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Prepare Model Inputs and Outputs 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