A basic matlab problem

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 Comments

x=ones(1,8);
y=9.5*x
This is the same as Fangjun Jiang's solution.

Sign in to comment.

 Accepted Answer

Fangjun Jiang
Fangjun Jiang on 5 Sep 2011

1 vote

A=9.5*ones(3,4)

More Answers (4)

bym
bym on 5 Sep 2011
m = 9.5*ones(1,15)
A = repmat(9.5,3,4);
or
A(1:3,1:4) = 9.5;
Bao Le
Bao Le on 5 Dec 2019

0 votes

x = 9.5.*ones(2,5)
Alejandro Ayala
Alejandro Ayala on 5 Dec 2019

0 votes

x = 9.5.*ones(2,5)

Products

Tags

Community Treasure Hunt

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

Start Hunting!