Borrar filtros
Borrar filtros

how to populate the left side with the same values as the right side in an array

3 visualizaciones (últimos 30 días)
Hello All,
I want to write a small code that, given an array with an n number of odd cells, populates the left side with the same values as the right side (already populated), and the center cell remains unchanged. I developed the following code:
for k=drange(1:n/2+0.5)
w(k)=input('please input half of the values')
end
p = randi(10,10,1); % Create Data
w = randi(10,10,1); % Create Data
[x L E I] = deal(3, 5, 7, 13); % Create Data
P(j)=-w(j)/(x*(15*x-37*L^2)*(76*H*Y))
q==0
for j=drange(n/2+1.5:n)
q=q+1
P(j)=P(n/2-0.5-q)
end
However, I keep obtaining different errors when I run this script. The most common is:
Index exceeds matrix dimensions.
Error in matlab_codigo (line 11) P(j)==P(n/2-0.5-q)
But other errors also occur. It depends of the inputs I give to the program.
Any help appreciated. Thanks
regards, Hugo

Respuesta aceptada

Image Analyst
Image Analyst el 5 de Dic. de 2014
Editada: Image Analyst el 5 de Dic. de 2014
Instead of doing things like n/2+0.5, use ceil(n/2). ceil() goes to the next higher integer. There is also a floor() function to go down (chop off the fraction), and a fix() which goes either way but always towards 0.

Más respuestas (1)

Roger Stafford
Roger Stafford el 5 de Dic. de 2014
t = 1:floor(n/2);
P(:,t) = P(:,n+1-t);
  3 comentarios
Roger Stafford
Roger Stafford el 5 de Dic. de 2014
Try this, Hugo:
P = rand(7,5); % <-- Choose any sizes you please
n = size(P,2);
disp(P)
t = 1:floor(n/2);
P(:,t) = P(:,n+1-t);
disp(P)

Iniciar sesión para comentar.

Categorías

Más información sobre Matrices and Arrays 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