Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Recursion revisited, variable y has in correct value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
function v= reversal(v) if length (v)>1 ii =round(length(v) /2 ); v=[reversal(v(ii+1:end)),reversal(v(1:ii))]; end end
1 comentario
Stephen23
el 15 de Jun. de 2021
"variable y has in correct value"
Your code does not have any variable y.
You did not ask a question, so we have no idea what help you want.
You did not format your code, which makes it harder for us to help you.
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!