error of min() function in matlab function block in simulink (v 2018b)

3 vues (au cours des 30 derniers jours)
Andrea Valletta
Andrea Valletta le 30 Oct 2020
Commenté : Ameer Hamza le 31 Oct 2020
Dear Matlab community,
I am trying to implement the minimum search within a matlab function block in a simulink model.
I need to find the minimum element and hence its coordinates of a matrix so I used the following code where the matrix "a" may contain 'nans'
>> [r,c]=find(a==min(a,[],'all'),1,'first')
however, I get the error " Invalid option. Option must be 'omitnan' or 'includenan' ". I substituted 'omitnan' to 'all' option but I eneded up with a "size mismatch" error.
So I am now using a for loop to search the minimum in the matrix, but this slows down my code.
I saw that this issue could arise with matlab releases that are older than 2018b, but I am using 2018b.
Do you know if there are other ways to solve this problem? Am I doing something wrong?
thank you in advance
Andrea

Réponse acceptée

Ameer Hamza
Ameer Hamza le 30 Oct 2020
According to documentation, the 'all' option is not supported for code-generation in R2018b (i.e., it will not work in Simulink). Also, using find() with min() might be inefficient. Try following
[~, idx] = min(a(:));
[r, c] = ind2sub(size(a), idx)
  2 commentaires
Andrea Valletta
Andrea Valletta le 30 Oct 2020
Thank you so much, it worked fine
Ameer Hamza
Ameer Hamza le 31 Oct 2020
I am glad to be of help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by