代码搜索结果
找到约 10,000 项符合
6 的代码
6_6.dsp
# Microsoft Developer Studio Project File - Name="6_6" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
6_6.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
6-6.m
x = -2.9:0.1:2.9;
y = randn(10000,1);
%生成一个随机的矩阵
hist(y,x)
title '笛卡儿坐标系下的直方图'
6-6.cpp
#include
#include
char * month_name(int n)
{
static char *name[]={
"ILLEGAL MONTH","JANUARY",
"FEBRUARY","MARCH","APRIL",
"MAY","JUNE","JULY","AUGUST",
"SEPTEMBE
6-6.m
%例程6-6 计算雷达回波信号的多谱勒时频谱
% e.g.6-6.m for example6-6;
N=512;
[fm,am,iflaw]=doppler(N,200,65,10,50);
figure;
plot(real(am.*fm));
title( 'Signal in time')
xlabel('Time');
ylabel('real pa
6_6.cpp
#include
using namespace std;
int main()
{ const int SIZE=4; //定义数组大小
float Array[SIZE] = { 10, 20, 30, 40 };
float f1=12.3, f2=45.6, f3=78.9;
for (int i=0; i
6-6.m
x = -2.9:0.1:2.9;
y = randn(10000,1);
%生成一个随机的矩阵
hist(y,x)
title '笛卡儿坐标系下的直方图'