How can I create a new variable after replacing some data from old variable?

% firstly,I have
A = [1 2 3 4 5; 6 7 8 9 10]
% then replace some value
A(A>3)=-999
%I would like to have
B= [1 2 3 -999 -999; -999 -999 -999 -999 -999] in the workspace.
%How to create independent B from edited A?
%Please advise

 채택된 답변

A = [1 2 3 4 5; 6 7 8 9 10]
B=A
B(A>3)=-999

댓글 수: 4

By copying the matrix you could do it
I got it!! thank you so much
madhan ravi
madhan ravi 2018년 10월 27일
편집: madhan ravi 2018년 10월 27일
Anytime :), if it worked out make sure to accept the answer so that other people know that the question is solved

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

태그

Community Treasure Hunt

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

Start Hunting!

Translated by