Run the second programme in the current execution

3 vues (au cours des 30 derniers jours)
manish sharma
manish sharma le 1 Juil 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!

Réponse acceptée

per isakson
per isakson le 1 Juil 2012
Modifié(e) : per isakson le 1 Juil 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 commentaire
manish sharma
manish sharma le 1 Juil 2012
That was simpler than I expected :)
Thanks a lot Isakson!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by