Problem 32. Most nonzero elements in row
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function r = fullest_row(a)
x=sum(a==0);
y=max(x);
row=0;
for i=1:length(x)
if x(i)==y
row=i;
end
r=row;
end
whats wrong with the code???
2 comentarios
Azzi Abdelmalek
el 15 de Jul. de 2013
Editada: Azzi Abdelmalek
el 15 de Jul. de 2013
Give a short example: a= ... and what should be the result?
Jan
el 15 de Jul. de 2013
@ricardo: Please do not let us solve your Cody problems. This is not the intention of this game and of this forum.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 15 de Jul. de 2013
I don't know what should be the result r, but I can see that the value of r is erased each loop
r=rows
maybe you can initialize r
r=[]
then write
r(end+1)=rows
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!