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.
ループを介してこれを実行できることはわかっていますが、もっと簡単な方法があるかどうか疑問に思っていました。
それらを引くだけですか?
>> foo = round(20*rand(6,2)) # generate a random matrix with 2 columns foo = 13 9 6 18 0 11 13 14 17 4 10 3 >> foo(:,1) - foo(:,2) # first column minus second column ans = 4 -12 -11 -1 13 7