How To Run Two Functions Simultaneously (Parallel Processing) in MatLab Add Comment Edit parfor i = 1:2 if i == 1 func1(); else func2(); end end function func1() %disp('Function 1'); ... Read More