How can I produce a matrix with below condition?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi everyone.I need to produce a k×1 matrix that its first element always is 1 and the others return a random number in [0,1].This interval contains 0 and 1 and all values between them.
0 comentarios
Respuesta aceptada
Voss
el 10 de Nov. de 2023
Something like this may be good enough:
k = 8;
result = [1; rand(k-1,1)]
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!