creating array with entries as numbers

1 vue (au cours des 30 derniers jours)
Debasish Mishra
Debasish Mishra le 24 Fév 2020
Commenté : Alex Mcaulley le 24 Fév 2020
i want to create an array indexing i=1:10
such that n{i}=1.44:1.45
so it must display n1=1.44
n2=1.441
.
.
n10=1.45
n=[n1 n2 n3 n4.....n10]
please help with this
  1 commentaire
Stephen23
Stephen23 le 24 Fév 2020
Use linspace (it will be more robust than using colon).

Connectez-vous pour commenter.

Réponses (1)

Alex Mcaulley
Alex Mcaulley le 24 Fév 2020
Do you mean this?
n = 1.44:0.001:1.45;
  2 commentaires
Debasish Mishra
Debasish Mishra le 24 Fév 2020
not exactly.i want if i set i=1:p
then n should also automatically take p elements with equal interval.
Alex Mcaulley
Alex Mcaulley le 24 Fév 2020
Then, as Stephen said use linspace:
n = linspace(1.44,1.45,10)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays 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