filling a internal value of a matrix
Mostrar comentarios más antiguos
Hi I have the following matrix
I=
0 1 0 0
0 0 1 1
0 1 0 0
0 0 1 0
I want the following output:
0 1 0 0
0 1 1 1
0 1 1 0
0 0 1 0
Is there any easy way to do that,easily?
Thanks
Respuesta aceptada
Más respuestas (1)
Paulo Silva
el 26 de Jun. de 2011
I(6)=1;
I(11)=1;
or
I([6 11])=1
3 comentarios
Mohammad Golam Kibria
el 26 de Jun. de 2011
Walter Roberson
el 26 de Jun. de 2011
Please give an example of the desired output matrix.
Mohammad Golam Kibria
el 26 de Jun. de 2011
Categorías
Más información sobre Operators and Elementary Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!