Change all matrix elements from x to 1/x
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Iakovos Antonoglou
el 12 de Jun. de 2018
Comentada: Walter Roberson
el 25 de Abr. de 2020
Hello, i am trying to change all the elements in a single line matrix from Xj to 1/Xj. Thanks
0 comentarios
Respuesta aceptada
Rik
el 12 de Jun. de 2018
X=1./X;
Use a dot for element-wise division and multiplication.
3 comentarios
Más respuestas (1)
Asieh Daneshi
el 25 de Abr. de 2020
A=rand(n);
A(:,n)=1./A(:,n);
1 comentario
Walter Roberson
el 25 de Abr. de 2020
This would change a single column, rather than a single line (row). It happens to change the last column, by the way.
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!