代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/182905/9186044
m demo.m
% This code is just a front-end to source separation algorithms.
% Purpose:
% 1) generate synthetic data
% 2) call some source separation algorithm
% 3) display the results
% The data are CM (constant
www.eeworm.com/read/182905/9186052
m jd4.m
% This code is just a front-end to source separation algorithms.
% Purpose:
% 1) generate synthetic data
% 2) call some source separation algorithm
% 3) display the results
% The data are CM (con
www.eeworm.com/read/182900/9186777
c ai2mif.c
/*************************************************************
AI-2-MIF Version 1.0 DATE: 5/6/94
BY: Deron Jackson
E-mail: (djackson@mit.edu)
Platform: Windows/DOS
www.eeworm.com/read/182767/9192194
c ftp-ls.c
/* Parsing FTP `ls' output.
Copyright (C) 1995, 1996, 1997, 2000, 2001
Free Software Foundation, Inc.
This file is part of GNU Wget.
GNU Wget is free software; you can redistribute it and/or
www.eeworm.com/read/379563/9193512
m erica.m
function [BW,B,W,A,y] = erica(x,nsou,whitening,MaxIter,stop);
% ERICA: Equivariant Robust Indepedent Component Analysis algorithm
% (Asymptotically equivariant for sufficient number of samples
%
www.eeworm.com/read/379443/9197090
m main.m
% Program 6-1
% main.m
%
% Packet communication system
%
% MATLAB version
% Programmed by M.Okita
% Checked by H.Harada
%
clear;
% definit
www.eeworm.com/read/379248/9203664
m main.m
% Program 6-1
% main.m
%
% Packet communication system
%
% MATLAB version
%
clear;
% definition of the global variable
global STANDBY TRANSMIT COLLISION PERMIT
global Srate Plen Ttime Dtime
www.eeworm.com/read/182146/9214885
cpp lift97.cpp
// LIFT53.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "lift97.h"
#define N 1024
#define Rate 0.2
#define Lev 5
int main(int argc, char* ar
www.eeworm.com/read/378503/9228293
c spp_defrag.c
/*
** Copyright (C) 1998,1999,2000,2001 Martin Roesch
** Copyright (C) 2000,2001 Dragos Ruiu
**
** This program is free software; you can redistrib
www.eeworm.com/read/378352/9236180
m twolp.m
function[z,x,p]=TwoLp(A,b,c,T)
%两阶段法求解线性规划
%入口参数A,b,c分别表示技术系数矩阵,资源限量向量,价值系数向量,入口参数T是一个向量
%向量b的维数必须等于矩阵A的行数m,向量c的维数必须等于矩阵A的列数n
%向量T的1至m个分量分别表示m个约束条件,0表示=,1表示=
%向量T的第m+1个分量,0表示min,1表示max
%出 ...