photo

ABHIJIT BISWAS


Last seen: presque 5 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
4 Réponses

RANG
12 875
of 300 771

RÉPUTATION
4

CONTRIBUTIONS
0 Questions
4 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
 of 21 084

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 170 941

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
Polynomial with function handle.
function fh = poly_fun(p) function polynomial = poly(x) polynomial = sum(p.*x.^(0:numel(p)-1)); end ...

environ 5 ans il y a | 2

Réponse apportée
Add echo to audio signal in matlab
%Perfectly working function echo_sound = echo_gen(input, fs, delay, amp) new_sr = round(fs*delay); no_echo = [inp...

environ 5 ans il y a | 0

Réponse apportée
Write a function called corners that takes a matrix as an input argument and returns four outputs: the elements at its four corners in this order: top_left, top_right, bottom_left and bottom_right. (Note that loops and if-statements are neither neces
function [a, b, c, d] = corners(x) a = x(1,1); %top left b = x(1,end); %top right c = x(end,1); %bottom left d = x(end,end);...

environ 5 ans il y a | 0