代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/278629/10523364
c cjpeg.c
/*
* cjpeg.c
*
* Copyright (C) 1991-1998, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README
www.eeworm.com/read/160431/10533553
c vi_raw.c
/*
* Copyright (c) 1995-1999 by TriMedia Technologies.
*
* +------------------------------------------------------------------+
* | This software is furnished under a license and may only be
www.eeworm.com/read/278336/10544498
c ivorbisfile_example.c
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE
www.eeworm.com/read/160266/10546867
c hplistc.c
/*$TITLE=Program to list C source files on an HP Laserjet printer*/
/*
*********************************************************************************************************
*
www.eeworm.com/read/278321/10547541
c main.c
/*
* Command line frontend program
*
* Copyright (c) 1999 Mark Taylor
* 2000 Takehiro TOMIANGA
*
* This library is free software; you can redistribute it and/or
* m
www.eeworm.com/read/352445/10551869
m demo_wigner4.m
function demo_wigner4(x, y)
% demo_wigner4 -- show some properties of the type 4 Wigner distribution
%
% Usage
% demo_wigner4(x, y)
%
% Inputs
% x one signal (odd length), optional
% y
www.eeworm.com/read/352445/10551881
m demo_localized.m
function demo_localized()
% demo_localized -- demo of the localized distribution (localized.m)
%
% Usage
% demo_tcd
%
% Compute some examples that demonstrate the properties of the
% distribution.
www.eeworm.com/read/423264/10575283
m linblock.m
%%linear block coder%%
clc;
clear all;
%ENCODER SECTION
disp('ENCODER SECTION')
n=input('ENTER THE VALUE FOR CODE LENGTH n:');
k=input('ENTER THE VALUE FOR CODE DIMENSION k: ');
q=n-k;
fprin
www.eeworm.com/read/423264/10575296
asv linblock.asv
%%linear block coder%%
clc;
clear all;
%ENCODER SECTION
disp('ENCODER SECTION')
n=input('ENTER THE VALUE FOR CODE LENGTH n ');
k=input('ENTER THE VALUE FOR CODE DIMENSION k ');
q=n-k;
fprint
www.eeworm.com/read/423264/10575303
m cyclic.m
%%non systematic cyclic coder %%
clc;
clear;
%ENCODER SECTION
n=input('enter the value of n ');
k=input('enter the value of k ');
q=n-k;
z=0;
fprintf('\nthe degree of polynomial is %d',n-1);