Wilver Sánchez
Followers: 0 Following: 0
Feeds
已回答
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...
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...
5 years 前 | 1
已回答
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...
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...
5 years 前 | 5