代码搜索:Making

找到约 2,505 项符合「Making」的源代码

代码结果 2,505
www.eeworm.com/read/359185/6352521

m decision_region.m

function D = decision_region(param_struct, region) %Function for making decision regions for Gaussians. %Inputs are the means, covariances and weights for the Gaussians. %Output is the decision r
www.eeworm.com/read/493206/6398499

m decision_region.m

function D = decision_region(param_struct, region) %Function for making decision regions for Gaussians. %Inputs are the means, covariances and weights for the Gaussians. %Output is the decision r
www.eeworm.com/read/486842/6530775

c svm_loqo.c

/* Copyright (C) 1999 Greg Schohn - gcs@jprc.com */ /* ********************* svm_thorsten.c ********************** * Based on Thorsten Joachim's "Making large-Scale SVM * Learning Practical" * (
www.eeworm.com/read/410924/11264857

m decision_region.m

function D = decision_region(param_struct, region) %Function for making decision regions for Gaussians. %Inputs are the means, covariances and weights for the Gaussians. %Output is the decision r
www.eeworm.com/read/258382/11866959

cpp main.cpp

/* This sample application asynchronously reads data from a driver, using the IOCP API. It uses multiple threads and multiple reads on the driver, making it a robust and fast data reader. Cr
www.eeworm.com/read/256156/12021046

txt read me.txt

I added this project for the sole purpose of making it easier to register Windows to open .ris files with the ReVive update program. You will want to incorporate some variation of this code to do th
www.eeworm.com/read/255662/12067263

c main.c

/* Name: WinAnim Author: Brook Miles Description: Making an animation in windows */ #include static char g_szClassName[] = "MyWindowClass"; static HINSTANCE g_hInst =
www.eeworm.com/read/252119/12301289

h letters.h

/* * Editor: TDE, the Thomson-Davis Editor * Filename: letters.h * Compiled by: Byrial Jensen * * This file contains various defines of letters etc., collected to * to ease making versio
www.eeworm.com/read/251482/12342064

java runnabledemo.java

public class RunnableDemo implements Runnable { String threadName; public RunnableDemo(String s) { System.out.println("Making thread"+s); threadName=s; } public void run() { f
www.eeworm.com/read/233815/14133842

m standardise.m

function Xs = standardise(X) %function Xs = standardise(X) % % Standardises the data in X, by making column means equal to 0 % and column variances equal to 1 % %INPUTS % X = the data matrix