How to insert value in the first of vector?

1 view (last 30 days)
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

Accepted Answer

Star Strider
Star Strider on 29 Dec 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;

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!