代码搜索:LP
找到约 9,457 项符合「LP」的源代码
代码结果 9,457
www.eeworm.com/read/100745/6265166
c combobox.c
/*--------------------------------------------------------------------------
** ComboBox.c Twin From: Twin/controls
**
**
**------------------------- < Licens
www.eeworm.com/read/100446/6269282
5 ldif.5
.TH LDIF 5 "20 August 2000" "OpenLDAP LDVERSION"
.\" $OpenLDAP: pkg/ldap/doc/man/man5/ldif.5,v 1.2.12.7 2001/11/06 16:52:25 kurt Exp $
.\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserv
www.eeworm.com/read/100446/6269314
3 lber-encode.3
.TH LBER_ENCODE 3 "12 May 2000" "OpenLDAP LDVERSION"
.\" $OpenLDAP: pkg/ldap/doc/man/man3/lber-encode.3,v 1.3.8.2 2000/07/29 01:53:04 kurt Exp $
.\" Copyright 1998-2000 The OpenLDAP Foundation All Rig
www.eeworm.com/read/456224/6278874
txt diaryex3_3.txt
help lp
LP Linear programming.
X=LP(f,A,b) solves the linear programming problem:
min f'x subject to: Ax
www.eeworm.com/read/126757/6314987
dat firlp8.dat
int LP_h[L]={
-43,
864,
5104,
10458,
10458,
5104,
864,
-43};
www.eeworm.com/read/489227/6476928
c presolve.c
#include "lpkit.h"
void presolve(lprec *lp)
{
fprintf(stderr, "Entering presolve\n");
}
www.eeworm.com/read/487037/6522714
txt 快速排序.txt
inline void swap(int& x, int& y)
{
int t=x;
x = y;
y = t;
}
void sort(int* a, int n)
{
if(n
www.eeworm.com/read/483253/6601732
m gaussmix.m
function [m,v,w,lp,f]=gaussmix(x,c,l,m0,v0,w0)
%GAUSSMIX fits a gaussian mixture pdf to a set of data observations [m,v,w,lp]=(x,xv,l,m0,v0,w0)
%
% n data values, k mixtures, p parameters, l loops
www.eeworm.com/read/263220/11370906
m sampsonerrf.m
function err = sampsonErrf( F, x, xp )
x(:,3) = 1;
xp(:,3) = 1;
L = F * x';
Lp = F' * xp';
num = sum(xp' .* L).^2;
den = L(1,:).^2 + L(2,:).^2 + Lp(1,:).^2 + Lp(2,:).^2;
err = sum(num ./ den) /