代码搜索:XY图
找到约 10,000 项符合「XY图」的源代码
代码结果 10,000
www.eeworm.com/read/293678/8280250
jpg 图.jpg
www.eeworm.com/read/370476/9599875
exe 图.exe
www.eeworm.com/read/370476/9599876
cpp 图.cpp
#include
#include
#define Maxvex 20 //最大结点数
#define FALUSE 0 //没找到最短路径
#define TURE 1 //找到最短路径
int IN=32767; //没有路径INFINITY
int vexnum; /
www.eeworm.com/read/202213/15389417
cpp 图.cpp
#include
#include
#define MAX_VERTEX_NUM 20
int visited[MAX_VERTEX_NUM];
int queue[MAX_VERTEX_NUM];
typedef struct ArcNode{
int adjvex;
struct ArcNode *nextarc;
}ArcNo
www.eeworm.com/read/113781/15447963
cpp 图.cpp
// 23.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "stdio.h"
#include "iostream.h"
#include "string.h"
#define MAX_VERTEX_NUM 5 //最大的顶点个数
www.eeworm.com/read/102347/15785632
h 图.h
#include
#include
#include
#include
#define MAXVTXNUM 20
typedef struct{
char name[30];
char info[200];
}VertexType;
typedef struct{
int
www.eeworm.com/read/190256/8446081
m dbphase2xy.m
function [x, y]= dbphase2xy(db,phase)
phase=unwrap(phase,175); % 8/25/02 rab
x = (10.^(db/20)).*cos( (pi/180)*phase );
y = (10.^(db/20)).*sin( (pi/180
www.eeworm.com/read/190256/8446109
m xy2magphase.m
function [mag, phase]= xy2dbphase(x,y)
mag = (x.^2 + y.^2).^0.5;
phase = (180/pi)* atan2(y,x);
www.eeworm.com/read/190256/8446132
m xy2dbphase.m
function [db, phase]= xy2dbphase(x,y)
db = 10*log10(x.^2 + y.^2);
phase = (180/pi)* atan2(y,x);
www.eeworm.com/read/190256/8446166
m dbphase2xy.m
function [x, y]= dbphase2xy(db,phase)
phase=unwrap(phase,175); % 8/25/02 rab
x = (10.^(db/20)).*cos( (pi/180)*phase );
y = (10.^(db/20)).*sin( (pi/180