Feeds
提问
prime factor function matlab
function [z1] = pfact(Z) if Z>=2 p = 2:Z; q = mod(Z,p); a=find(q==0); z1=p(a) elseif Z==1 z1 = 1 els...
2 years 前 | 1 个回答 | 0
1
个回答提问
I need help plotting using this while loop
this is how my code looks like currently, I am generating the correct munbers for the fuction but it is not plotting anything. P...
2 years 前 | 1 个回答 | 0
