Rowfun without changing the order
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I want to use rowfun but I don't want the resulting outcome to be sorted according to the grouping variables that I specify. I want them to stay in their original ordering.
Or alternatively, reordering the resulting outcome as I want could also solve my problem. But as I lose the variable that I want to order my table accordingly after I get results from rowfun, I can't do that either. 
2 Commenti
  dpb
      
      
 il 17 Gen 2021
				You can use a function with multiple outputs and pass through the other variable as an additional input/output.
You can't do that with an anonymous function in rowfun however, will have to write the m-file code.
  dpb
      
      
 il 17 Gen 2021
				I didn't catch it was you asking the same question altho recognized the same issue...
The above works only for another auxiliary variable  and cannot work uniquely if the auxiliary variable is not unique across the group.
Other than you could save the elements of the group in a cell array of the proper height, but there's still no ordering the output itself; just a collection of which of the auxiliary variable values are contained in the collection of the group.
Risposte (1)
  Roee Ronkin
 il 18 Lug 2024
        How about adding another variable which is the original line number? Then u can always sort back to this order
0 Commenti
Vedere anche
Categorie
				Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!