昱安 朱
Followers: 0 Following: 0
Statistiques
0 Questions
5 Réponses
RANG
221 011
of 295 527
RÉPUTATION
0
CONTRIBUTIONS
0 Questions
5 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
0
RANG
of 20 242
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 057
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Generate echo to an audio
function output = echo_gen(input, fs, delay, amp) %input : signal,fs : sample rate,dalay : time of dalay,amp : amplitude num_d...
plus d'un an il y a | 0
Write a function called blur that blurs the input image
function output = blur(img,w) [row_img,col_img]=size(img); output=zeros(row_img,col_img); imgd=double(img); % must convert...
plus d'un an il y a | 0
I get an error, what's wrong? on Sparse matrix logic and answer
function matrix=sparse2matrix(cellvec) matrix=cellvec{2}*ones(cellvec{1,1}); for ii=3:length(cellvec) matrix(cellvec{i...
plus d'un an il y a | 0
caesar cyphor encryption problem .
function [coded]=caesar(encrypt,shift) coded_num=encrypt+shift; big=coded_num(coded_num>126); small=coded_num(cod...
plus d'un an il y a | 0
Write a function max_sum that takes v a row vector of numbers & n,a positive integer as inputs.The function needs to find n consecutive elements of v whose sum is largest possible.It returns summa & index of first element of n consecutive integers.
function [summa,index]=max_sum(v,n) len=length(v); %v的長度 if(n>length(v)) %n大於v的長度 summa=0; index=-...
plus d'un an il y a | 0