Matlab实时脚本输出与常规脚本不同

时间:2016-10-16 01:49:47

标签: matlab

此脚本作为活动脚本运行,与正常运行脚本的运行方式不同。它按照正常的脚本运行,但是使用实时脚本,输出似乎滞后一次。是否有一个脚本修复程序可以像.mlx类型那样运行它?

Live Script的空白似乎有点过时,但两者都运行相同。 ' bit off'部分不是通缉。

clear
clc
orig='Jmkyvih$mx$syx$}ixC';
fprintf('original input is ''Jmkyvih$mx$syx$}ixC''\n')
yn=0;
counter=0;
while yn==0
    yn= input('enter ''1'' to end the process or ''0'' to continue the loop\n');

    if yn==1
        fprintf('conversion found, %.0f loops were run to make the text readable\n',counter)
        fprintf('string run %1.0f is "%s" \n\n',counter,orig)
        break;
    elseif  yn~=0
        error('restart and input a valid number')
    else
    end
    fprintf('conversion not found\n ')
    counter=counter+1;
    orig=char(double (orig)-1);
    fprintf('string run %1.0f is "%s" \n\n',counter,orig)
end

0 个答案:

没有答案