Sort elements in cell array in descending order

8 vues (au cours des 30 derniers jours)
Panos Kerezoudis
Panos Kerezoudis le 11 Mai 2023
Hi!
I hava a cell containing three row vectors and I would like to sort each vector in descending order.
Other than using a loop, is there a way to do this with the cellfun function? bc it automatically does it in ascending order.
This is the code that I used using cellfun.
thank you!
new_cell_array = cellfun(@sort, cell_array, 'UniformOutput', false);

Réponse acceptée

Stephen23
Stephen23 le 11 Mai 2023
fun = @(v) sort(v,'descend');
new_cell_array = cellfun(fun, cell_array, 'UniformOutput', false);
  1 commentaire
Panos Kerezoudis
Panos Kerezoudis le 11 Mai 2023
perfect thank you!
so for my learning, @(v) enables me to use/specify an existing function prior to inputting into cellfun?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays 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