how to generate complex random matrix without repetation in matlab?
35 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
complex matrix should not repeat .
3 comentarios
Walter Roberson
el 7 de Oct. de 2020
N = 5;
cMatrix = complex(rand(N, N), rand(N,N));
idx = randperm(N,3);
cMatrix(idx(1),:) = cMatrix(idx(2),:) + rand * cMatrix(idx(3),:);
rank(cMatrix)
disp(cMatrix)
Respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!