
saurav Tiwari
Statistics
0 Questions
4 Answers
RANK
17 210
of 275 731
REPUTATION
2
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
of 18 573
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 125 549
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
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(a) [m,n]=size(a) for i=1:m j=1:n x(i)=sum(a(i,j)) end summa=sum(x) end
mer än 2 år ago | 0
Write a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
function [a]=under_age(n,m) a=n<m; if a==1; fprintf('true') end if nargin<2; m=21; end end
nästan 3 år ago | 0
How to write function for above combine matrix?
function T=trio(n,m) a=ones(n,m);b=2*a;c=3*a; T=[a;b;c]; end
nästan 3 år ago | 1
Write a function called minimax that takes M, a matrix input argument and returns mmr, a row vector containing the absolute values of the difference between the maximum and minimum valued elements in each row. As a second output argument called mmm,
function [a,b]=minimax(M) [m,n]=size(M); x=1:m; a=max(M(x,:)')-min(M(x,:)'); v=M(:); b=max(v)-min(v); end
nästan 3 år ago | 0