Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば10X2の行列があり、別の変数の下に行列の長さの値(したがって、10)をSASに格納する場合、PROC IMLでどのように実行されますか?
NROW関数とNCOL関数がありますが、それはあなたが探しているものですか?
proc iml; a= {1 2, 2 5, 3 6, 4 1}; r = NROW(a); c = NCOL(a); print r c; quit;