photo

SUTITHI


Last seen: casi 2 años hace Con actividad desde 2022

Followers: 0   Following: 0

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Recursive function to reverse a vector
function w=reversal(v) if length(v)==1 w= v; else w= [v(end),reversal(v(1:end-1))]; end

alrededor de 2 años hace | 0