Borrar filtros
Borrar filtros

How to find number of objects in a structure?

19 visualizaciones (últimos 30 días)
Ayesha ch
Ayesha ch el 19 de Jun. de 2016
Comentada: Ayesha ch el 20 de Jun. de 2016
Hi I'm new to Matlab. I have the following struct array and I want to save the number of objects of struct in a variable. How can I find number of objects? Any help would be appreciated
  1 comentario
Adam
Adam el 19 de Jun. de 2016
Editada: Adam el 19 de Jun. de 2016
What do you mean by 'object'? You mean the number of fields or the total number of things across every field? In your example you seem to just mean the number of elements in one field of the struct. If that is the case then you would be better always calculating it on demand to ensure you don't have to keep it up to date. Even better, use a class and a dependent property, but that s slightly more advanced.

Iniciar sesión para comentar.

Respuesta aceptada

Muhammad Usman Saleem
Muhammad Usman Saleem el 19 de Jun. de 2016
Let i am creating a structure s below
S = struct('a', 0, 'b', 1, 'c', 2);
Now when i am investigating what is inside of struture i type
>> S
S =
a: 0
b: 1
c: 2
Now i want to access value of its first feild(which is a)
S.a
ans =
0
for value of last feild, type this
S.c
ans =
2
now let's say i want to modify value( new value of 10) of last feild(c) of strutre S , do this
S.c=10
S =
a: 0
b: 1
c: 10
if you want to delete any field of struture S , use this
S.a=[]
S =
a: []
b: 1
c: 10
Tell me if you need to learn more about struture?
Usman

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by