Sort the prime numbers in each row of a matrix - MATLAB Cody - MATLAB Central

Problem 44266. Sort the prime numbers in each row of a matrix

Difficulty:Rate
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

63.89% Correct | 36.11% Incorrect
Last Solution submitted on Feb 10, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
3

Problem Recent Solvers37

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page