Weisz Thomas
Followers: 0 Following: 0
Statistics
RANK
127.234
of 295.467
REPUTATION
0
CONTRIBUTIONS
4 Questions
1 Answer
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 20.234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.912
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
Feeds
Question
i need help balancing the inner matrix dimensions of the two sine functions .
function mul_sines(f1,f2) t=0:0.01:20; s=sin(f1*t)*sin(f2*t+pi); plot(t,s)
bijna 6 jaar ago | 1 answer | 0
1
answerQuestion
how can i make the centre elements of a matrix to become zeros
I am writting a function that takes an n-by-m matrix and and an odd interger k as input arguments. both n and m are odd numbers ...
bijna 6 jaar ago | 3 answers | 0
3
answersi'am writing a function the takes an n-by-m matrix as an input and returns the input matrix with the center element zeroed out. when i run it, it is giving the error:' not enough input arguments' in line two. can anybody assist me please.
function h= zero_middle(h) h(end/2+1/2,end/2+1/2)=0; end
bijna 6 jaar ago | 0
Question
i'am writing a function the takes an n-by-m matrix as an input and returns the input matrix with the center element zeroed out. when i run it, it is giving the error:' not enough input arguments' in line two. can anybody assist me please.
function zero_middle(h) [n,m]=size(h); for ii=1:n; for jj=1:m; if mod(ii,2) && mod(jj,2); h(end/2+1...
bijna 6 jaar ago | 2 answers | 0
2
answersQuestion
what are the indices of the middle element of a matrix
Write a function called zero_middlethat takes an n-by-mmatrix as an input where both nand mare odd numbers (the function does ...
bijna 6 jaar ago | 1 answer | 0