代码搜索:shape
找到约 10,000 项符合「shape」的源代码
代码结果 10,000
www.eeworm.com/read/355062/10298259
jpg shape.jpg
www.eeworm.com/read/425473/10353535
h shape.h
//*****************
//* shape.h *
//*****************
#include "math.h"
const double pi=3.14159265358;
struct circle
{
double r;
};
struct square
{
double a;
};
struct rectangle
www.eeworm.com/read/425372/10359998
m shape.m
function shaped_vals = shape(rec_symbol, Mr, U, N);
% shaped_vals = shape(rec_symbol, Mr, U, N);
%
% This function shapes the received symbols prior to demodulation. This completes the
% decompositio
www.eeworm.com/read/353746/10422469
c shape.c
/* Pango
* shape.c: Convert characters into glyphs.
*
* Copyright (C) 1999 Red Hat Software
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the G
www.eeworm.com/read/424653/10430398
m shape.m
function shaped_vals = shape(rec_symbol, Mr, U, N);
% shaped_vals = shape(rec_symbol, Mr, U, N);
%
% This function shapes the received symbols prior to demodulation. This completes the
% decompositio
www.eeworm.com/read/161052/10458869
m shape.m
function shaped_vals = shape(rec_symbol, Mr, U, N);
% shaped_vals = shape(rec_symbol, Mr, U, N);
%
% This function shapes the received symbols prior to demodulation. This completes the
% decompositio
www.eeworm.com/read/160841/10487285
class shape.class
www.eeworm.com/read/278492/10533100
java shape.java
//********************************************************************
// Shape.java Author: Lewis and Loftus / Peter DePasquale
//
// Refinement #2
//
// Represents a generic shape in t
www.eeworm.com/read/160361/10538833
m shape.m
t=0:0.01:10;f=0.5;w=2*pi*f;
y=5*cos(w*t)-2*cos(4*w*t-pi*2/3)-1;
y=y/2;
for i=1:1001
if y(i)
www.eeworm.com/read/160346/10540973
java shape.java
// Shape.java
// 定义形状接口
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
}