photo

MD ZIHADUL ISLAM TUSAR


KUET

Active since 2020

Followers: 0   Following: 0

No one.

Programming Languages:
C++
Spoken Languages:
English

Statistics

All
MATLAB Answers

0 Questions
1 Answer

File Exchange

4 Files

Cody

0 Problems
319 Solutions

RANK
266,773
of 300,571

REPUTATION
0

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
11,649 of 21,027

REPUTATION
41

AVERAGE RATING
0.00

CONTRIBUTIONS
4 Files

DOWNLOADS
85

ALL TIME DOWNLOADS
339

RANK
511
of 169,680

CONTRIBUTIONS
0 Problems
319 Solutions

SCORE
3,663

NUMBER OF BADGES
9

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 3
  • First Submission
  • Explorer
  • MATLAB Mini Hack 2022 Participant
  • Cody 10th Anniversary 10-Day Streak
  • Introduction to MATLAB Master
  • First Answer
  • Community Group Solver
  • MATLAB Central Treasure Hunt Finisher
  • Solver

View badges

Feeds

View by

Answered
How do I refer to only the odd-numbered elements in any given vector?
function y = everyOther(x) n=length(x); y=x(1:2:n); end

3 years ago | 0