Matlab独立可执行文件无限期地在Web服务器中运行

时间:2013-11-26 08:42:04

标签: php matlab iis web

当我尝试使用来自IIS服务器的PHP运行matlab独立可执行文件时,程序没有停止并且无限期地运行。但是当我手动运行相同的可执行文件时,它的工作正常。

以下是我的matlab代码。

Pairs=21;

TimeHistories=csvread('Example_Peak_Data.csv'); % reads from a excel file

Sizes=size(TimeHistories);

SampleSize=Sizes(1);

Triggers=Sizes(2)/Pairs;

tot=0;

for n = 1:Triggers

    for nn = 1:Pairs

        tot=tot+1;

        [Peak(tot),Peakind(tot)]=max(TimeHistories(:,tot));


        [Trough(tot),Troughind(tot)]=min(TimeHistories(:,tot));
        Amplitude(tot)=Peak(tot)-Trough(tot);
        AmplitudeMatrix(n,nn)=Peak(tot)-Trough(tot);


    end
end

这只是一个测试程序。 MCR安装在服务器中。此外,驻留文件夹中没有权限问题。我无法弄清楚这背后的问题。我在php中使用exec()命令

0 个答案:

没有答案