Change all matrix elements from x to 1/x
24 views (last 30 days)
Show older comments
Iakovos Antonoglou
on 12 Jun 2018
Commented: Walter Roberson
on 25 Apr 2020
Hello, i am trying to change all the elements in a single line matrix from Xj to 1/Xj. Thanks
0 Comments
Accepted Answer
More Answers (1)
Asieh Daneshi
on 25 Apr 2020
A=rand(n);
A(:,n)=1./A(:,n);
1 Comment
Walter Roberson
on 25 Apr 2020
This would change a single column, rather than a single line (row). It happens to change the last column, by the way.
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!