Create array with same number

706 Ansichten (letzte 30 Tage)
Fadal Sasse
Fadal Sasse am 10 Aug. 2017
Beantwortet: Drue am 22 Feb. 2023
I have this command z=ones(length(x),1) If I want to change (ones) with 2 or 3 what I should do?

Akzeptierte Antwort

James Tursa
James Tursa am 14 Sep. 2018
Bearbeitet: James Tursa am 14 Sep. 2018
See this link for a discussion of various methods to do this:
The fastest method seems to be
z = zeros(length(x),1) + 2;

Weitere Antworten (2)

José-Luis
José-Luis am 10 Aug. 2017
twos = 2.* ones(length(x),1)
  3 Kommentare
José-Luis
José-Luis am 10 Aug. 2017
Please accept the answer that best solves your problem.
PY SUN
PY SUN am 14 Sep. 2018
Thanks

Melden Sie sich an, um zu kommentieren.


Drue
Drue am 22 Feb. 2023
To create arrays with the same number I'd personally just set a variable and put it in the linspace function
x = 3
poof = input('how many columns of this number do you want?')
linspace(x,x,poof)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by