How do I find the two smallest values in varargin?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Harold Meggs
le 24 Avr 2015
Réponse apportée : David Sanchez
le 24 Avr 2015
For example, the varargin input is 5,3,6
I want to multiply the the two lowest values, 5*3.
I have tried this:
y=sort (varargin,1, 'ascend');
z=y(:, 1:2);
area= z{1}*z{2};
This is the error I receive:
Error using sort
DIM and MODE arguments not supported for cell arrays.
0 commentaires
Réponse acceptée
David Sanchez
le 24 Avr 2015
function out = two_lowest_values(varargin)
a = sort(cell2mat(varargin));
out = a(1)*a(2);
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Structures 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!