could anyone help me how to solve the issue in the following code

1 visualización (últimos 30 días)
code:
unused_rows1=1:12;
while ~isempty(unused_rows1)
rows1_matrix=reshape(unused_rows1,[],2);
rows1_matrix(:,end)=rows1_matrix(end:-1:1,end);
for k=1:size(rows1_matrix,1)
rows1=rows1_matrix(k,:)
y=diff(rows1)
unused_rows1=[];
end
end
z=max(y)
in this code i want to find the maximum of y.when i run the code i am getting 6 different values for y.
Among the 6 values i want to maximum value.Could anyone please help me on this.

Respuesta aceptada

KSSV
KSSV el 25 de Jul. de 2019
unused_rows1=1:12;
while ~isempty(unused_rows1)
rows1_matrix=reshape(unused_rows1,[],2);
rows1_matrix(:,end)=rows1_matrix(end:-1:1,end);
for k=1:size(rows1_matrix,1)
rows1=rows1_matrix(k,:)
y=diff(rows1)
y_max = max(y) ;
unused_rows1=[];
end
end
z=max(y)

Más respuestas (1)

per isakson
per isakson el 25 de Jul. de 2019
Replace
y=diff(rows1)
by
y(k)=diff(rows1)

Categorías

Más información sobre Elementary Math en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by