Using randi instead of floor and rand.

3 visualizaciones (últimos 30 días)
Giuseppe
Giuseppe el 1 de Mayo de 2014
Respondida: Star Strider el 1 de Mayo de 2014
This is my password generator.
% Password Generator
% 1. Input Parameters
uppercase = 'A':'Z';
lowercase = 'a':'z';
numbers = '0':'9';
letters = [uppercase, lowercase];
characters= [letters, numbers];
% 2. Ouputput Password
passwd_length = input('enter the length');
passwd(1) = letters(randi(numel(letters)));
passwd(2:passwd_length) = characters ( 1 + floor(rand(1, passwd_length - 1) .* numel(characters)) )
In the last line I have used the floor command with rand. Is there a way where I can use randi instead.

Respuesta aceptada

Star Strider
Star Strider el 1 de Mayo de 2014
This is how I’d do it:
passwd(2:passwd_length) = characters (randi(length(characters ), 1, (passwd_length-1)))

Más respuestas (0)

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by