代码搜索结果
找到约 10,000 项符合
4 的代码
ex4_4.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
ex4_4.dsp
# Microsoft Developer Studio Project File - Name="Ex4_4" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
ex4_4.cpp
//【例4.4】采用不同返回方式的求正方形面积函数的比较。
#include
using namespace std;
double temp;
double fsqr1(double a){
temp=a*a ; return temp;
}
double & fsqr2(double a){
temp=a*a ; return temp;
}
i
c4-4.cpp
#include
using namespace std;
inline int max(int,int, int);
int main()
{
int i=10,j=20,k=30,m;
m=max(i,j,k);
cout
algo4-4.cpp
// algo4-4.cpp 根据algo4-3.cpp产生的文件,索引查询图书
#include"c1.h"
typedef int ElemType;
#include"c2-5.h"
#include"bo2-6.cpp"
#include"c4-2.h"
#include"bo4-2.cpp"
#define MaxBookNum 10 // 假设只对10
例4-4.c
/* 直到型循环结构示例 */
#include
void main()
{
char ch;
char buf[256];
char *p;
printf("Input a string.\n"); // 读取字符串
scanf("%s", buf);
p = buf;
do
{
ch = *p; //
a4-4.cfm.htm
Parameter对象
example 4-4.asm
;Example 4 - 4. Biquad IIR Filter ASM Listing for the TMS320C54x DSP
.sect ”iir”
iir_task:
STM #K_FRAME_SIZE–1, BRC ; Perform filtering for xx samples
RPTB iir_filter_loop–1
LD *
example4_4.m
%将两幅灰度图像合并成一个具有两帧的图像阵列,然后再调用imshow函数来显示第
%一帧图像。
A1=imread('rice.tif');
A2=imread('testpat1.tif');
A=cat(3,A1,A2); %用cat函数实现矩阵的合并
imshow(A(:,:,1)) %1代表第一帧