Community Profile

photo

Wilver Sánchez


Last seen: nästan 4 år ago Active since 2020

Statistics

  • Explorer
  • First Answer

View badges

Content Feed

View by

Answered
sparse2matrix random error
% function matrix=sparse2matrix(cell) M=cell{2}*ones(cell{1}(1,1),cell{1}(1,2)); for ii=1:length(cell)-2 M(cell{2+ii}(1...

ungefär 4 år ago | 1

Answered
caesar cyphor encryption problem .
function coded = caesar(text,amound) n=amound - 95 * fix(amound/95); v=double(text)+n; v(v<32)=126-(31-v(v<32)); v(v>126)=32...

ungefär 4 år ago | 5