
Abdul Quadir Khan
Statistics
0 Questions
7 Answers
RANK
17,607
of 273,075
REPUTATION
2
CONTRIBUTIONS
0 Questions
7 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
of 18,445
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 122,494
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Data Entry with struct
function database = voters(di,varargin) if isempty(di) database = struct('Name', {}, 'ID', {}); end if r...
2 years ago | 0
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...
2 years ago | 0
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+...
2 years ago | 1
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);...
2 years ago | 0
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)....
2 years ago | 0
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...
2 years ago | 0
Write a function called halfsum that takes as input an at most two-dimensional matrix A and computes the sum of the elements of A that are in the diagonal or are to the right of it. example, the input is [1 2 3; 4 5 6; 7 8 9],the ans is 26
function summa = halfsum(x) [row,col] = size(x); allsum=0; for n=1:row for c=n:col allsum=x(n,c)+allsum; e...
2 years ago | 0