How can i use th linspace function to to create a vector ‘v’ containing all positive even numbers less than 21. i.e. [2 4 6 8……..]

10 vues (au cours des 30 derniers jours)
...How can i use th linspace function to to create a vector ‘v’ containing all positive even numbers less than 21. i.e. [2 4 6 8……..]

Réponses (2)

Image Analyst
Image Analyst le 25 Nov 2013
Try this:
out = linspace(2, 20, 10)
of course
out = 2 : 2 : 21;
is a lot more straightforward.
  2 commentaires
Hemz
Hemz le 28 Nov 2019
Modifié(e) : Hemz le 28 Nov 2019
Hi, I am trying to create force my matlab plot to use a step of 10 years and not automatically choose one, so the years start from 2000 to 2100. I want a uniform space 2000, 2010, 2020...2100. How can I do this?
By the way I already tried x = linspace (2000, 2100, 11)
Image Analyst
Image Analyst le 28 Nov 2019
That will do it. Another way is to use the colon operator:
>> x = linspace (2000, 2100, 11)
x =
2000 2010 2020 2030 2040 2050 2060 2070 2080 2090 2100
>> x=2000:10:2100
x =
2000 2010 2020 2030 2040 2050 2060 2070 2080 2090 2100

Connectez-vous pour commenter.


Shane
Shane le 25 Nov 2013
A = 0:2:21;
  1 commentaire
Image Analyst
Image Analyst le 25 Nov 2013
0:2:21 does not do what you asked since it includes 0 while you specifically asked that 0 not be included.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by