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.
たとえば、1 から 10 までの番号の配列を繰り返さずに作成するにはどうすればよいですか。マトリックスの行を再調整するために使用するためです。たとえば、1 から 10 の場合、次のように出力したいと考えています。 4 1 3 8 2 5 6 7 9 10 どうやってやるの?
私はあなたが必要とするものだと思います -
randperm(10)
A = magic(4); も使用できます。B = A(A<=10); B は、必要なマトリックスを提供します。