Creating matrix with different elements
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    M.R. Ebrahimi
 el 12 de Nov. de 2020
  
    
    
    
    
    Comentada: Ameer Hamza
      
      
 el 12 de Nov. de 2020
            Hi
I have to create a 3 * 4 matrix whose elements are between 3 and 8, but the element of each row will be different. How can I creat it?
0 comentarios
Respuesta aceptada
  Ameer Hamza
      
      
 el 12 de Nov. de 2020
        
      Editada: Ameer Hamza
      
      
 el 12 de Nov. de 2020
  
      This is one way
lb = 3;
ub = 8;
M = rand(3,4);
for i = 1:size(M,1)
    M(i,:) = randperm(ub-lb+1, size(M,2))+lb-1;
end
Result
>> M
M =
     4     5     8     6
     3     6     7     8
     7     3     6     8
2 comentarios
Más 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!

