2016-08-12 1177 views
-4

只是一個非常快速的問題。將(命令行?)參數傳遞給Matlab腳本

我已經給過這個文件,我想運行它。

我相信它需要命令行參數與function trees_main(puzzle_ind,print_f,nls)功能,但我不知道。它是幾個不同文件的一部分 - 但這是主控制器。

關於如何傳遞函數一些參數的任何想法?它是否在運行時完成?

% A* search tree algorithm for solving 8 puzzle problem 
    % Inputs: 
    % puzzle_ind = 1:30 
    % print_f = 0/1, 1 to show the step solutions 
    % nls = 0/1, 1 to Nilsson Score 
    % Calls: 
    % trees (A* search) 
    % trees_gm (Generate moves) 
    % trees_mh (Manhattan metrics) 
    % trees_nls (Nilsson sequence) 
    % Uses: 
    % combinations.mat (30 resolvable puzzle combinations) 
    % 

    function trees_main(puzzle_ind,print_f,nls) 

    global Tg T0 T1 nls_f % These variables are visible in all functions 
    nls_f = nls; 
    Tg = [1 2 3; 8 0 4; 7 6 5]; % Goal sequence 
    % Coordinates (row and column) of tiles in a puzzle 
    T0 = [1 1; 1 2; 1 3; 2 1; 2 2; 2 3; 3 1; 3 2; 3 3]; 
    T1 = [1 2 3 8 0 4 7 6 5]; 
    load combinations Cmb 

    if puzzle_ind >= 1 && puzzle_ind <= 30 
     P = Cmb{puzzle_ind}; % assign the Puzzle 
     [T,n1,n2] = trees(P,print_f); % call A* search function 
     fprintf('\nPuzzle:\n') 
     fprintf('% 1i %1i %1i\n',Cmb{puzzle_ind}') 
     fprintf('Solution:\n') 
     fprintf('% 1i %1i %1i\n',T') 
     fprintf('Number of nodes = %4i\nNumber of moves = %2i\n\n',n1,n2) 
    end 
    trees_plot(puzzle_ind); % statistics 
    return 

    function trees_plot(pind) 
    global N1 nls_f 
    M = (N1(:,[2 8])'); 
    n = size(M,2); 
    plot(1:n,M) 
    xlabel('Number of Tested Nodes') 
    ylabel('Metrics (without cost)') 
    if nls_f == 0 
     s1 = 'No'; 
    else 
     s1 = 'Yes'; 
    end 
    title(sprintf('Puzzle Index %2i, NSS %s',pind,s1)) 
    axis([1 n 0 max(M(1,:))+1]) 
    grid on 
    text(5,15,'Level (Cost)') 
    return 

感謝您的時間

+0

您是否在網上搜索了這個? MATLAB有很棒的文檔,這是一個非常基本的問題。 – Suever

+2

請參閱:[函數基礎知識](http://www.mathworks.com/help/matlab/function-basics.html) – excaza

回答

0

如果你想運行此功能從MATLAB命令行trees_main(puzzle_ind,print_f,NLS),那麼它應該被保存的文件名trees_main.m在你的matlab路徑上。你可以使用addpath('some path')這個文件(trees_main.m)所在的位置。現在,你都準備從命令窗口調用。就像正常的函數調用一樣。 例如,trees_main(15,1,1)。