代码搜索:Output
找到约 10,000 项符合「Output」的源代码
代码结果 10,000
www.eeworm.com/read/434200/7883401
cc output.cc
#include "output.h"
output::output(float x)
{
val=x;
}
output::~output()
{}
void output::set_name(string x)
{
name=x;
}
string output::get_name()
{
return(name);
}
float output::getv(
www.eeworm.com/read/434200/7883457
o output.o
www.eeworm.com/read/434200/7883483
h output.h
#ifndef __OUTPUT
#define __OUTPUT
#include
using namespace std;
class output{
public:
output(float);
~output();
void set_name(string);
string get_name();
www.eeworm.com/read/434049/7894480
1 output.1
@%:@! /bin/sh
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.59.
@%:@
@%:@ Copyright (C) 2003 Free Software Foundation, Inc.
@%:@ This configu
www.eeworm.com/read/434049/7894493
output.0
@%:@! /bin/sh
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.59.
@%:@
@%:@ Copyright (C) 2003 Free Software Foundation, Inc.
@%:@ This configu
www.eeworm.com/read/298953/7920375
txt output.txt
2.049005
0.855312
-3.079022
-0.323778
-4.135719
-3.311794
-5.144632
-2.210120
1.754258
0.989773
1.535761
0.894009
-3.012426
-1.361966
-4.256214
1.270729
-2.954040
2.6
www.eeworm.com/read/433389/7933436
cpp output.cpp
#include "StdAfx.h"
#include "../common/myd3d.h"
#include "output.h"
//-----------------------------------------------------------------------------
// 名称:dumpVertices()
// 功能:输出mesh顶点
//-------
www.eeworm.com/read/433389/7933438
h output.h
#ifndef _OUTPUT_H
#define _OUTPUT_H
void dumpVertices(std::ofstream& outFile, ID3DXMesh* mesh);
void dumpIndices(std::ofstream& outFile, ID3DXMesh* mesh);
void dumpAttributeBuffer(std::ofstrea
www.eeworm.com/read/398594/7934538
output.0
@%:@! /bin/sh
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.53.
@%:@
@%:@ Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 200
www.eeworm.com/read/433343/7939917
m output.m
function [bestpath,minpathlong]=Output(path,TSPMatrix,Popsize)
%输出
FP=Fitness(path,TSPMatrix);
[row,col]=size(path);
[tempFP,index]=max(FP);
bestpath=path(index,:);
minpathlong=0;
for i=1:col-1