
Hussain Bhavnagarwala
Statistics
All
RANK
150,191
of 277,672
REPUTATION
0
CONTRIBUTIONS
2 Questions
1 Answer
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 18,788
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
Counting characters in a file
Hello, I am doing an online course on matlab in coursera and I have come a cross a problem that seems hard for me to solve. ...
3 years ago | 4 answers | 0
4
answersAnswered
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
function [summa,index] = max_sum(v,n) if n>length(v) summa = 0; index = -1; return end ...
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
function [summa,index] = max_sum(v,n) if n>length(v) summa = 0; index = -1; return end ...
3 years ago | 0
Question
Trying to modify a vector by removing alternate elements
Hi , I am learning matlab and I came across a problem on cody: I need to be able to remove even elements from a 1D vector: i...
3 years ago | 1 answer | 0