代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/481082/6658947
m mutation2.m
function pop=mutation2(pmutation,crosspop)
%%%%%%%%%% 逆转策略变异法 %%%%%%%%%
%crosspop=[1,2,3,4,1,2; %测试用例
% 2,3,1,4,1,2;
% 3,4,1,1,2,2;
% 1,2,1,4,3,2];
%pmutation=
www.eeworm.com/read/480564/6666253
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main
www.eeworm.com/read/480579/6666333
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned
www.eeworm.com/read/476821/6751288
txt atsu.txt
OTSU法对于具有双峰性质的灰度图像或是彩色图像的某一通道的分割效果很好,程序为了增加健壮性加了个可以根据实际情况确定的修正值th_set.
******************************************************************************************************************************
www.eeworm.com/read/476406/6760741
f90 bsort.f90
! 冒泡排序法范例
! By Perng 1997/8/29
program BUBBLE_SORT_DEMO
implicit none
integer, parameter :: N=10
integer :: A(N)=(/6,2,8,4,0,9,3,5,1,7/) ! 待排序的数据
write(*,"('Source=>',10I3)") A
call B
www.eeworm.com/read/264324/11319591
cpp binsearch.cpp
////
#include
#include "binsearch.h"
int binsearch(sqtable R,float K,float AD)//二分查找法
{
int low=0,mid,hig=R.n;//置查找区间初值
float H;
while(low
www.eeworm.com/read/409260/11338471
f90 bsort.f90
! 冒泡排序法范例
! By Perng 1997/8/29
program BUBBLE_SORT_DEMO
implicit none
integer, parameter :: N=10
integer :: A(N)=(/6,2,8,4,0,9,3,5,1,7/) ! 待排序的数据
write(*,"('Source=>',10I3)") A
call B
www.eeworm.com/read/263640/11351813
m fengebaohe.m
function fengebaohe
origin=imread('cell.jpg');
hsv=rgb2hsv(origin);
%提取S分量
saturation=hsv(:,:,2);
%OTSU法选取阈值分割细胞核
level = graythresh(saturation);
bw1 = im2bw(saturation,level);
%种子填充
bw2 = im
www.eeworm.com/read/407069/11430438
cpp 4.cpp
/*采用高斯列主元消元法,编译环境visual C++ 2008*/
#include
#include
#include
FILE *fp;
void read(float *p,int n);
void save(float *p,int n);
void main()
{
if((fp=fopen("a.txt"
www.eeworm.com/read/403522/11515135
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned