代码搜索:舒服点
找到约 10,000 项符合「舒服点」的源代码
代码结果 10,000
www.eeworm.com/read/188087/8573583
c tsp.c
#include
#include
/*定义距离的最大值*/
#define MAXDISTANCE 999999
/*定义点的最大个数*/
#define MAXPOINT 20
int my_rank,group_size,n;
int point[MAXPOINT];
double dist[MAXPOINT][MAXPOINT];
doubl
www.eeworm.com/read/388757/8579026
cpp text_mobile.cpp
// Text_Mobile.cpp : 定义应用程序的入口点。
//
#include "stdafx.h"
#include "Text_Mobile.h"
#include "TabControl.h"
#define MAX_LOADSTRING 100
// 全局变量:
HINSTANCE g_hInst; // 当前实例
HWND g_hW
www.eeworm.com/read/187907/8593156
cpp new.cpp
// new.cpp : 定义应用程序的入口点。
//
#include "stdafx.h"
#include "new.h"
#include
#include
#include
#include
#define MAX_LOADSTRING 100
const int si
www.eeworm.com/read/286740/8745863
cpp factorial.cpp
// factorial.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
using namespace std;
int fac(int i_nt)
{
//int fac_ji;
while(i_nt
www.eeworm.com/read/386257/8759390
m ex1211.m
%ex1211.m 用lsqnonlin求解最小二乘问题
clear all
x0 = [0.3 0.4]; % 初值点
[x,resnorm] = lsqnonlin(@f1211,x0) % 调用最优化函数求得x与平方和残差
www.eeworm.com/read/429531/8803614
cpp bp1.cpp
// BP.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/385265/8811081
cpp [2022]海选女主角.cpp
// [2022]海选女主角.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
using namespace std;
int main()
{
int n, m, x, y, i, j, max, temp, real;
while (cin>>m>>n)
{
max = -1;
www.eeworm.com/read/385265/8811123
cpp 1012.cpp
// 1012.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "stdio.h"
int fun(int i)
{
if (i
www.eeworm.com/read/383796/8917477
cpp encryptor.cpp
// Encryptor.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include "afxwin.h"
#include "afxtempl.h"
#include "io.h"
#include "fcntl.h"
#include "sys/
www.eeworm.com/read/427378/8948959
m svdd.m
clc
close all
nu =0.6; % nu -> [0,1] 在支持向量数与错分样本数之间进行折衷
% 支持向量机的 nu 参数(取值越小,异常点就越少)
%ker = struct('type','linear');
ker = struct('type','gauss','width',0.45);
%