One way to check if a number is in a structure in Matlab is to use a loop to iterate over each field of the structure and check if that field contains the number. Here's an example implementation:
main.m470 chars14 linesThis function takes two arguments: the number you're searching for and the structure you want to search in. It returns true if the number is present in the structure, and false otherwise.
Note that this implementation assumes that the structure does not have nested substructures. If it does, you'll need to modify the function to handle them appropriately.
gistlibby LogSnag