creating a recursive prime numbers function

hi ,
i wanna write a recursive function that provides me the primer divisors of a given number
for example 63
[3,3,7]
in adition , can u please explain me the recursive there?
thanks a lot!

댓글 수: 3

James Tursa
James Tursa 2019년 8월 5일
What have you done so far? What specific problems are you having with your code?
asaf omer
asaf omer 2019년 8월 5일
so far i wrote this ;
function [res]=blah(n)
if n==1 || isprime (n)
res=n;
eles
res=mod(n,blah(n-1))
end
end
i know that i have some problems with the second part
Steven Lord
Steven Lord 2019년 8월 5일
What difficulty are you experiencing with this project?
Do you have an algorithm that you're not sure how to implement? One technique I use in this scenario is to write the steps of the algorithm as comments in the Editor then work my way through, implementing each step in turn. If I'm not sure how to implement a step, I break it up into substeps until I get to pieces I know how to write.
If you don't have an algorithm, since this sounds like a homework assignment does your textbook include such an algorithm?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

제품

태그

질문:

2019년 8월 5일

댓글:

2019년 8월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by