How many zeros do I have before a specific sting variable?

1 visualización (últimos 30 días)
Dear all
I have
A={
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
[0]
' b1'
' b1'
' b1'
' b1'
' b1'
'b1'
' b1'
[0]
[0]
[0]
'b1'
' b1'}
I have this cell vector. This vector has a characteristic. Immediately after the first zeros the letter 'b1' begins. So I would like to count the zeros before the first 'b1' that starts to appear in this vector. In this case I have 39 zeros. Is it possible to calculate this number using a Matlab code?
thanks

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 15 de Ag. de 2012
yourzeros = find(cellfun(@ischar,A),1,'first')-1;

Más respuestas (3)

Matt Fig
Matt Fig el 15 de Ag. de 2012
Editada: Matt Fig el 15 de Ag. de 2012
T = strfind(cellfun(@(x) ~x(1),A).',[1 0])
Notice that T will show you the index of every zero that is followed by a nonzero. So you want T(1).

Azzi Abdelmalek
Azzi Abdelmalek el 15 de Ag. de 2012
min(find(cellfun(@(x) ~isnumeric(x),A)))-1

Oleg Komarov
Oleg Komarov el 15 de Ag. de 2012
Another solution:
pos = strfind([A{:}],'b')-1
pos(1)
  2 comentarios
Andrei Bobrov
Andrei Bobrov el 16 de Ag. de 2012
Hi Oleg! may be in this case so?
pos = strfind([A{:}],' ')-1
pos(1)
Oleg Komarov
Oleg Komarov el 16 de Ag. de 2012
I assumed the ' ' was a typing error :)

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by