How can I generate a pseudo random column vector V
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Ihor
 el 5 de Dic. de 2022
  
    
    
    
    
    Respondida: Chetan Bhavsar
      
 el 5 de Dic. de 2022
            How can I generate a pseudo random column vector V of varying length L (where L will be changing in a cycle)?
0 comentarios
Respuesta aceptada
  Chetan Bhavsar
      
 el 5 de Dic. de 2022
        % Define the minimum and maximum values of L
L_min = 10;
L_max = 100;
% Generate a random integer value for L within the defined range
L = randi([L_min, L_max]);
% Generate a column vector V of length L filled with pseudo-random values
V = rand(L, 1)
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Random Number Generation 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!

