Borrar filtros
Borrar filtros

How can I write MATRIX?

4 visualizaciones (últimos 30 días)
Nhl
Nhl el 8 de Jul. de 2014
Editada: Nhl el 8 de Jul. de 2014
When the programme run I must abtain below
matrix(1,2)=1; matrix(2,1)=1; matrix(1,3)=1; matrix(3,1)=1; matrix(2,3)=1; matrix(3,2)=1;
What can I write instead of question tag in the below matlab programme to obtain matrix(1,2)=1; matrix(2,1)=1; matrix(1,3)=1; matrix(3,1)=1; matrix(2,3)=1; matrix(3,2)=1; ?
%%%%%%%%%%%%%%%%%%%%%%%%%%% clc matrix=zeros(10,10); for i=1:? matrix(?,?) = 1; matrix(?,?) = 1; end

Respuesta aceptada

Anthony
Anthony el 8 de Jul. de 2014
I am not sure to have understood your question but you should try:
M =1-eye(10);
By the way: avoid loops in Matlab ;-) Hope it helps,

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by