Problem 44266. Sort the prime numbers in each row of a matrix
Considering a matrix A, sort the prime numbers of each row in ascending order. For exemple:
      input A=[5 8 2 4;
               1 11 1 5]
output B=[2 8 5 4;
          1 5 1 11]
You don't have to sort the other numbers, just the prime numbers. Enjoy!
Solution Stats
Problem Comments
- 
		2 Comments
		Matthew Eicholtz
    	on 11 Sep 2017
	
	
  	Not sure why the problem title says "3x3 matrix", then uses non-3x3 matrices in the example and test suite. Considering rewording for clarity.
		Dyuman Joshi
    	on 20 Apr 2021
	
	
  	The problem description has been updated and new test cases are added.
Solution Comments
Show commentsProblem Recent Solvers37
Suggested Problems
- 
         Basics: Divide integers to get integer outputs in all cases 135 Solvers 
- 
         Vector of numbers divisible by 3 149 Solvers 
- 
         Simple equation: Annual salary 4220 Solvers 
- 
         07 - Common functions and indexing 2 417 Solvers 
- 
         
         231 Solvers 
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!