Change from 1 to -1

2 views (last 30 days)
Offroad Jeep
Offroad Jeep on 16 May 2016
Commented: Offroad Jeep on 17 May 2016
Hi to all , I have a Matrix A = ones(5). How i can change the element value one by one to -1.
example A = [1,1,1]
A = [-1,1,1] A = [-1,-1,1] A = [-1,-1,-1]
But I want to do it for 5 X 5 matrix
Regards

Accepted Answer

James Tursa
James Tursa on 16 May 2016
Edited: James Tursa on 16 May 2016
Do you mean iteratively in a loop? E.g., changing elements one at a time in column order:
n = numel(A);
for k=1:n
A(k) = -1;
% Use A here
end
  2 Comments
Offroad Jeep
Offroad Jeep on 16 May 2016
Edited: Offroad Jeep on 16 May 2016
Thanks for help, that great. You have put a foundation stone in my simulation...... Thanks again and will like if we work together....

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays 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!