Borrar filtros
Borrar filtros

How to generate a random number that is either 100, 200, or 300.

1 visualización (últimos 30 días)
Hello, I'm looking for a way to generate a random number that is either those 3 choices (nothing in between), utilizing only the rand, randi, round, floor, or ceil methods.

Respuesta aceptada

Image Analyst
Image Analyst el 8 de Oct. de 2022
As long as it's not your homework, you can use my code:
r = 100 * randi(3, 1)

Más respuestas (1)

Torsten
Torsten el 7 de Oct. de 2022
Hint:
100*1 = 100
100*2 = 200
100*3 = 300
  3 comentarios
John D'Errico
John D'Errico el 8 de Oct. de 2022
Yes. there is a way. @Torsten showed you how.
Karl
Karl el 8 de Oct. de 2022
He definitely did and it flew over my head.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by