Community Profile

photo

Irfan Turk


Freelancer

Last seen: 1 year ago Active since 2013

Followers: 0   Following: 0

Message

PhD Mathematics Professional Interests: Numerical Algorithms, Technical Computing

Statistics

All
  • First Review
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
I need a program to check prime numbers
%This code find all prime numbers %upto the entered number clear all; N=input('Prime Numbers until:'); if N<2 return; ...

5 years ago | 2

Answered
Writing a function to find prime numbers
You can find all prime numbers upto a certain number with the following code %This code find all prime numbers %upto the enter...

5 years ago | 0