Borrar filtros
Borrar filtros

How can I access the previous index of a vector?

3 visualizaciones (últimos 30 días)
Khalid Khawaja
Khalid Khawaja el 24 de Abr. de 2017
Comentada: Khalid Khawaja el 24 de Abr. de 2017
Hello friends,
I am trying to write a code to generate random vectors. Some of the variables are integer whereas a few are real numbers. Following is the code:
xL=[1 500 1 500];
xU=[37 1400 37 1400];
Xint=[1 3];
nvar=4;
for xV=1:nvar
if Xint(xV)==xV
InPoP(:,xV) = randi([xL(xV) xU(xV)],Popu_size,1);
else
InPoP(:,xV) = (xU(xV)-xL(xV)).*rand(Popu_size,1) + xL(xV);
end
end
Xint vector shows that first and third elements should be generated as integer. The problem is when the loop moves away from x=2. It cannot access the elements of Xint to know the number. I would be grateful if someone can share the solution of the problem.
Regards
  2 comentarios
KSSV
KSSV el 24 de Abr. de 2017
You have in Xint only two numbers and you are trying to access four numbers out of it. Make Xint to have four numbers i.e include few more numbers.
Khalid Khawaja
Khalid Khawaja el 24 de Abr. de 2017
How can I write a program to generate Xint variables integer using iterative schemes?

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Abr. de 2017
Change
if Xint(xV)==xV
to
if ismember(xV, Xint)
  1 comentario
Khalid Khawaja
Khalid Khawaja el 24 de Abr. de 2017
Thank you very much for the answer. I was looking for exactly the same thing. Regards

Iniciar sesión para comentar.

Más respuestas (1)

Roger Stafford
Roger Stafford el 24 de Abr. de 2017
You don’t appear to use ‘Xint’ for any other purpose than deciding whether to use integers or reals. Therefore I suggest you change it to:
Xint = [1 0 1 0];
for xV=1:nvar
if Xint(xV) == 1
% Use integers
else
% Use reals
end
  1 comentario
Khalid Khawaja
Khalid Khawaja el 24 de Abr. de 2017
Thank you for your answer. It is also a good solution. Actually, I need Xint values for further operations. Changing the values to binary will need many changes in my code. Regards

Iniciar sesión para comentar.

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!

Translated by