代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/458538/7294786
m evaluate.m
%evaluate
%fit=zeros(1,n);
for j=1:n %n个个体
for i=1:m %m位。即m个物品
fit(j)=sum(x(j,:)*p');%问题解的适应度,即选择物品的总价值
end
end
fit;
%for j=n:-1:2
%if fit(j)>fit(j-1)
% t=fit(
www.eeworm.com/read/458393/7297108
m evaluate.m
function [stad_deviation,stad_variance,entropy] = evaluate(I)
%I为融合图像
%stad_deviation:融合图像的标准偏差
%variance:融合图像的标准方差
%entropy:融合图像的熵
%%
%求标准偏差
I1 = imread(I);
[sI,cI,bI] = size(I1);
t = 0.;h =
www.eeworm.com/read/457219/7331762
c evaluate.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: evalua
www.eeworm.com/read/453717/7413890
java evaluate.java
/*
* Evaluate.java
*
* Created on 2007年11月8日, 下午12:39
*
*/
package myUtil;
import java.util.*;
/**
* tools to evaluate.
* @author yuhui_bear
*/
public class Evaluate {
publi
www.eeworm.com/read/452217/7444946
c evaluate.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: evalua
www.eeworm.com/read/206731/7456627
c evaluate.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: evalua
www.eeworm.com/read/441783/7665097
m evaluate.m
function evaluate(funkcja, p, k, wezly_x)
x = p : 0.1 : k;
y = eval(funkcja);
y_lagrange = lagrange(wezly_x, y, x);
plot(x, y_lagrange)
axis('equal')
end
www.eeworm.com/read/399362/7867075
cpp evaluate.cpp
/*______________________________________________________________________________________________________________
______________________________________________________________________________________
www.eeworm.com/read/399362/7867081
h evaluate.h
#include "stdio.h"
#include "Stack.h"
#include "string.h"
/******************判断字符是否运算符(包括界限符)*********************************************/
int InOPTR(char e){
if(e=='+'||e=='-'||e=='*'||e
www.eeworm.com/read/299227/7875036
cpp evaluate.cpp
//计算后缀表达式值的文件Evaluate.cpp
const int SM=40;
#include"linearStack2.cpp"
float Evaluate(char* str)
//计算由str字符串所表示的后缀表达式的值,
//表达式要以'@'字符结束.
{LinStack S;//创建对象S
S.InitStack(SM);//初始化栈
istrstream