代码搜索:大数分解
找到约 4,750 项符合「大数分解」的源代码
代码结果 4,750
www.eeworm.com/read/286183/8784076
cpp 大数浮点数模板.cpp
#include
using namespace std;
const int maxlen=10000;
class HP
{
public:
int len,s[maxlen];
HP(){(*this)=0;};
HP(int inte){(*this)=inte;};
HP(const char*str){(*this)
www.eeworm.com/read/457434/7325536
cpp 数中的最大数.cpp
#include
#include
using namespace std;
const int N=1000*1000*10 +1;
char buf[N],ans;
int main()
{
int k;
while(scanf(" %s%d", buf, &k)!=EOF)
{
int l
www.eeworm.com/read/195741/8133124
prg 找最大数及位置.prg
dime a(10)
clear
for i=1 to 10
a(i)=int( rand()*100)
??a(i)
next i
m=a(1)
ml=1
for i=2 to 10
if a(i)>m then
m=a(i)
ml=i
endif
next i
? m,ml
www.eeworm.com/read/426535/9014708
m ex1409.m
%例14-9 QR分解
A=rand(3)
[Q,R]=qr(A)
Q'*Q
Q*R
B=rand(2,4)
[QQ,RR]=qr(B)
QQ*QQ'
QQ*RR
www.eeworm.com/read/166937/9988501
m wavelet2.3.2.m
load cnoislop;
x = cnoislop;
% 对信号使用haar小波进行层次为2的小波包分解
t = wpdec(x,2,'haar');
www.eeworm.com/read/463644/7177295
txt lda for text classification.txt
使用变分EM方法实现的LDA文本模型
输入为文本即可
分解实现,含多个小函数可单独使用
www.eeworm.com/read/243217/12954875
m ex1409.m
%例14-9 QR分解
A=rand(3)
[Q,R]=qr(A)
Q'*Q
Q*R
B=rand(2,4)
[QQ,RR]=qr(B)
QQ*QQ'
QQ*RR