photo

昱安 朱


Last seen: presque 2 ans il y a Actif depuis 2023

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
5 Réponses

RANG
75 652
of 297 805

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
5 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 20 473

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 159 570

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

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ 2 ans il y a | 0

Réponse apportée
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...

environ 2 ans il y a | 0

Réponse apportée
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...

environ 2 ans il y a | 0

Réponse apportée
caesar cyphor encryption problem .
function [coded]=caesar(encrypt,shift) coded_num=encrypt+shift; big=coded_num(coded_num>126); small=coded_num(cod...

environ 2 ans il y a | 0