Make the vector [1 2 3 4 5 6 7 8 9 10] - MATLAB Cody - MATLAB Central

Problem 2. Make the vector [1 2 3 4 5 6 7 8 9 10]

Difficulty:Rate

In MATLAB, you create a vector by enclosing the elements in square brackets like so:

 x = [1 2 3 4]

Commas are optional, so you can also type

 x = [1, 2, 3, 4]

Create the vector

 x = [1 2 3 4 5 6 7 8 9 10]

There's a faster way to do it using MATLAB's colon notation.

Solution Stats

71.42% Correct | 28.58% Incorrect
Last Solution submitted on Apr 22, 2025

Problem Comments

Solution Comments

Show comments
Registration Now Open for MathWorks AUTOMOTIVE CONFERENCE 2025
...
Hello Community, We're excited to announce that registration is now open for the...

Group

Project Euler II Image
Project Euler II
  • 12 Problems
  • 51 Finishers

Problem Recent Solvers50496

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page