sas-iml

    0熱度

    1回答

    我有下面的代碼,在MATLAB的偉大工程,我要在SAS/PROC IML轉: [row col] = size(coeff); A_temp = zeros(row,col); for i = 1: row/6 A_temp(6*(i-1)+1:6*i,:) = coeff(6*(i-1)+1:6*i,4:col);end; 在PROC IML我做了以下內容: proc

    1熱度

    2回答

    我想用宏做循環PROC IML內像這樣: %Let Tab1=FirstTable; %Let Tab2=SecondTable; %Let Tab3=ThirdTable; *&Tab1-3 have been initialised as sas datasets; proc iml; * This works; use &Tab1; read all into Mat3