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 Kommentare

Ashok jat
Ashok jat am 18 Mai 2019
x=ones(1,8);
y=9.5*x
Walter Roberson
Walter Roberson am 19 Mai 2019
This is the same as Fangjun Jiang's solution.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 5 Sep. 2011

1 Stimme

A=9.5*ones(3,4)

Weitere Antworten (4)

bym
bym am 5 Sep. 2011

0 Stimmen

m = 9.5*ones(1,15)
Walter Roberson
Walter Roberson am 5 Sep. 2011

0 Stimmen

A = repmat(9.5,3,4);
or
A(1:3,1:4) = 9.5;
Bao Le
Bao Le am 5 Dez. 2019

0 Stimmen

x = 9.5.*ones(2,5)
Alejandro Ayala
Alejandro Ayala am 5 Dez. 2019

0 Stimmen

x = 9.5.*ones(2,5)

Produkte

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by