Finding specific number of characters in vector

2 Ansichten (letzte 30 Tage)
Elijah L
Elijah L am 15 Sep. 2020
Bearbeitet: Stephen23 am 15 Sep. 2020
I have a character vector ( c = ['a' 'r' 'y' 'z' 'b' 'u' 'k'] ) and I would to determine the number of characters that are not b or r. How do I do this using logical operators?
  1 Kommentar
Stephen23
Stephen23 am 15 Sep. 2020
Bearbeitet: Stephen23 am 15 Sep. 2020
Note that
c = ['a' 'r' 'y' 'z' 'b' 'u' 'k'];
is just a more complex and less efficient way of writing
c = 'aryzbuk';
You do not need to concatenate individual characters to make a character vector. It is totally superfluous. No experienced user would bother doing this.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Stephen23
Stephen23 am 15 Sep. 2020
>> c = 'aryzbuk';
>> nnz(c~='b' & c~='r')
ans = 5

Ameer Hamza
Ameer Hamza am 15 Sep. 2020
Try setdiff()
c = ['a' 'r' 'y' 'z' 'b' 'u' 'k'];
n = numel(setdiff(c, ['b' 'r']));

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by