photo

Abdul Quadir Khan


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

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
6 Réponses

RANG
18 559
of 300 829

RÉPUTATION
2

CONTRIBUTIONS
0 Questions
6 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
1

RANG
 of 21 088

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 171 210

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
Data Entry with struct
function database = voters(di,varargin) if isempty(di) database = struct('Name', {}, 'ID', {}); end if r...

environ 5 ans il y a | 0

Réponse apportée
name value pairs with variable input arguments
function db = name_value_pairs(varargin) if rem(nargin,2) ~= 0 || nargin < 2 db = {}; return end if ~ischar(vararg...

environ 5 ans il y a | 0

Réponse apportée
I meet some problem in my coursera homework Echo Generator
function [output]= echo_gen(input,fs,delay,amp) [r,c] = size(input); extraEchoTime = round(delay*fs); echoSignal = zeros(r+...

environ 5 ans il y a | 1

Réponse apportée
Write a function called blur that blurs the input image
function out = blur(img,w) % convert to double for doing calculations imgD = double(img); [row, col] = size(img);...

environ 5 ans il y a | 0

Réponse apportée
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices = saddle(M) row_max = max(M,[],2); col_min = min(M,[],1); [row,col]=find((M == row_max)....

environ 5 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) m = cellvec{1}(1,1); n = cellvec{1}(1,2); defult = ones(m,n) .* cellvec...

environ 5 ans il y a | 0