Pragyan Dash
Followers: 0 Following: 0
Statistics
0 Questions
2 Answers
RANK
7,613
of 295,467
REPUTATION
6
CONTRIBUTIONS
0 Questions
2 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
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
Function to find the next prime number...
function k = next_prime(n) while (~isprime(n + 1)) n = n + 1; end k = n + 1; end
4 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
%this worked for me. Happy to help! function summa = halfsum(M) [row col] = size(M) summa = 0; for ii = 1:row; for jj =...
4 years ago | 3