代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/349903/10785529
c williams.c
/*
* Program to factor big numbers using Williams (p+1) method.
* Works when for some prime divisor p of n, p+1 has only
* small factors.
* See "Speeding the Pollard and Elliptic Curve
www.eeworm.com/read/349903/10785765
c pollard.c
/*
* Program to factor big numbers using Pollards (p-1) method.
* Works when for some prime divisor p of n, p-1 has itself
* only small factors.
* See "Speeding the Pollard and Elliptic Cu
www.eeworm.com/read/349903/10786047
cpp pollard.cpp
/*
* Program to factor big numbers using Pollards (p-1) method.
* Works when for some prime divisor p of n, p-1 has only
* small factors.
* See "Speeding the Pollard and Elliptic Curve
www.eeworm.com/read/270992/11013566
m onewaytodoit.m
%onewaytodoit.m/created by PJNahin for "Duelling Idiots"(2/28/99)
%This m-file plots a histogram of 10,000 random numbers
%that are normally distributed with zero mean and unit variance.
%
%
rand
www.eeworm.com/read/469655/6972958
m initpt.m
% initpt
% ------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% function [n,m,x]=initpt(nprob,factor)
% This function generates the starting points for each problem
% b
www.eeworm.com/read/467759/7000776
m lin2pcma.m
function p=lin2pcma(x,m,s)
%LIN2PCMA Convert linear PCM to A-law P=(X,M,S)
% pcma = lin2pcma(lin) where lin contains a vector
% or matrix of signal values.
% The input values will be converted to
www.eeworm.com/read/467806/7001731
txt 例1.81.txt
例1.81 进行合并同类项执行。
>> syms x
>> collect(3*x^3-0.5*x^3+3*x^2)
ans=
5/2*x^3+3*x^2)
进行因式分解执行。
>> factor(3*x^3-0.5*x^3+3*x^2)
ans=
1/2*x^2*(5*x+6)
www.eeworm.com/read/197608/7069671
c primes3.c
/*
* File: primes3.c
* ---------------
* This program prints out a list of all prime numbers between
* the limits LowerLimit and UpperLimit. This version corrects
* the errors in primes2.c and r
www.eeworm.com/read/236873/7119122
m lin2pcma.m
function p=lin2pcma(x,m,s)
%LIN2PCMA Convert linear PCM to A-law P=(X,M,S)
% pcma = lin2pcma(lin) where lin contains a vector
% or matrix of signal values.
% The input values will be converted to