How to insert value in the first of vector?

1 Ansicht (letzte 30 Tage)
Mira le
Mira le am 29 Dez. 2019
Beantwortet: Star Strider am 29 Dez. 2019
CumProb
ans =
0.1579 0.2105 0.3158 0.4211 0.5263 0.7895 1.0000
I want to insert the value 0 at the begining of the vector CumProb
the result=
0 0.1579 0.2105 0.3158 0.4211 0.5263 0.7895 1.0000

Akzeptierte Antwort

Star Strider
Star Strider am 29 Dez. 2019
Probably the easiest way is to do exactly that:
CumProb = [0.1579 0.2105 0.3158 0.4211 0.5263 0.7895 1.0000];
CumProb = [0 CumProb];
Another option:
newCumProb = zeros(1,size(CumProb,2)+1);
newCumProb(2:end) = CumProb;

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by