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.
行列とベクトルがあり、行列の各列をベクトルと比較したい - 取得したいのは、ベクトルに等しい列の数です。例:
matrix M=1 1 0 1 1 0 0 0 0 1 1 0 vector v= 1 0 1
結果は 2 になるはずです (M の 2 列目はベクトル v に等しいため)
それ、どうやったら出来るの?