delete some matrix values

1 view (last 30 days)
Takim Mustakim
Takim Mustakim on 10 Nov 2022
Commented: Arif Hoq on 10 Nov 2022
A = [1 2 3 4 5 6 7 8 9];
how to make A < 7:
A = [1 2 3 4 5 6]

Accepted Answer

Arif Hoq
Arif Hoq on 10 Nov 2022
A = [1 2 3 4 5 6 7 8 9];
B=A(A<7)
B = 1×6
1 2 3 4 5 6
  2 Comments
Takim Mustakim
Takim Mustakim on 10 Nov 2022
can i : A = A (A<7) ????
Arif Hoq
Arif Hoq on 10 Nov 2022
possible....
A = [1 2 3 4 5 6 7 8 9];
A=A(A<7)
A = 1×6
1 2 3 4 5 6

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!