A basic matlab problem

1 vue (au cours des 30 derniers jours)
Bahareh
Bahareh le 5 Sep 2011
Commenté : Walter Roberson le 5 Déc 2019
Hello all,
If I want to create a matrix of for example 9.5 with a specific size i.e. [9.5 9.5 .... 9.5], what should I do?
  2 commentaires
Ashok jat
Ashok jat le 18 Mai 2019
x=ones(1,8);
y=9.5*x
Walter Roberson
Walter Roberson le 19 Mai 2019
This is the same as Fangjun Jiang's solution.

Connectez-vous pour commenter.

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 5 Sep 2011
A=9.5*ones(3,4)
  1 commentaire
Bahareh
Bahareh le 5 Sep 2011
thanks a lot.

Connectez-vous pour commenter.

Plus de réponses (4)

bym
bym le 5 Sep 2011
m = 9.5*ones(1,15)
  1 commentaire
Bahareh
Bahareh le 5 Sep 2011
thanks a lot.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 5 Sep 2011
A = repmat(9.5,3,4);
or
A(1:3,1:4) = 9.5;
  1 commentaire
Bahareh
Bahareh le 6 Sep 2011
Thanks a lot Mr. Walter!

Connectez-vous pour commenter.


Bao Le
Bao Le le 5 Déc 2019
x = 9.5.*ones(2,5)
  1 commentaire
Walter Roberson
Walter Roberson le 5 Déc 2019
This is the same as earlier solutions.

Connectez-vous pour commenter.


Alejandro Ayala
Alejandro Ayala le 5 Déc 2019
x = 9.5.*ones(2,5)
  1 commentaire
Walter Roberson
Walter Roberson le 5 Déc 2019
This is the same as earlier solutions.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by