How to insert value in the first of vector?

1 visualización (últimos 30 días)
Mira le
Mira le el 29 de Dic. de 2019
Respondida: Star Strider el 29 de Dic. de 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

Respuesta aceptada

Star Strider
Star Strider el 29 de Dic. de 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;

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by