photo

MD ZIHADUL ISLAM TUSAR


KUET

Active since 2020

Followers: 0   Following: 0

No one.

Programming Languages:
C++
Spoken Languages:
English

Statistics

All
  • 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

2 years ago | 0