Error using randi Size inputs must be scalar (Matlab)

I have entries parameters A and B, and I have to obtain C with for loop, where C is the random subset of B of size Ai
I program this
for i=1:n
C=randi([0,1],B,A(i));
end
But I get the error (Error using randi ==> inputs must be scalar)
How can I fixe the problem

1 comentario

Rik
Rik el 12 de Abr. de 2021
How are you making sure B and A(i) are positive scalars?

Iniciar sesión para comentar.

 Respuesta aceptada

Jan
Jan el 12 de Abr. de 2021
Editada: Jan el 12 de Abr. de 2021
"C is the random subset of B of size Ai" :
for i = 1:n
% Without repetitions:
C = B(randperm(numel(B), A(i)));
% Or with repetitions:
C = B(randi([1, numel(B)], 1, A(i)));
... use C now
end

5 comentarios

high speed
high speed el 12 de Abr. de 2021
@Jan What do you mean by repetitions
If you have an array with these values:
B=[3 6 9];
Now you can take random samples in two ways:
C=[6 3 6]
%or
C=[6 9 3]
%or
C=[3 3 3]
%or
...
Or like this:
C=[3 6]
%or
C=[3 9]
%or
C=[9 6]
@high speed: Simply try it:
B = 1:4;
% No repetitions:
C = B(randperm(numel(B), 4))
C = B(randperm(numel(B), 4))
C = B(randperm(numel(B), 4))
C = B(randperm(numel(B), 4))
% With repetitions:
C = B(randi([1, numel(B)], 1, 4));
C = B(randi([1, numel(B)], 1, 4));
C = B(randi([1, numel(B)], 1, 4));
C = B(randi([1, numel(B)], 1, 4));
Do you see it? With repetitions the values in the output can repeat. Then C can be longer than B. Without repetition, C is a permutation of the elements of B.
high speed
high speed el 13 de Abr. de 2021
@Jan Unfortunately, that's not what I want. Because I must program in a way that C is the random subset of B of size Ai. And in your example you didn't consider the size Ai
Jan
Jan el 13 de Abr. de 2021
@high speed: Sorry, what? Yes, in my example, I've used 4 to clarify what "repetition" means. You have asked for this detail. But the code in my answer does contain A(i).

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 12 de Abr. de 2021

Comentada:

Jan
el 13 de Abr. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by