代码搜索:xsin
找到约 25 项符合「xsin」的源代码
代码结果 25
www.eeworm.com/read/226030/4788261
h xsin_table.h
/* Copyright 2001,2002,2003 NAH6
* All Rights Reserved
*
* Parts Copyright DoD, Parts Copyright Starium
*
*/
/* -*-C-*-
********************************************************************
www.eeworm.com/read/162559/10295975
as coord.as
/*******************
ENGLISH
project: 3d engine
by: ivan ivanoff (www.i2off.org)
based on the work made by : stuart schoneveld (www.illogicz.com)
email: avatar@i2off.org
apologies:
to my wife and k
www.eeworm.com/read/439612/7705302
m bisection.m
%xsin(x) =1
clear all;
hold off;
clc;
f = inline('x*sin(x)-1');
fplot(f,[0,2]);
hold on;
grid on;
a=0;
b=2;
plot(a,0,'.g');
plot(b,0,'.r');
for i =1:20;
c=(a+b)/2;
if f(a).*f(c)>
www.eeworm.com/read/439612/7705304
m false_position.m
%xsin(x) =1;
clear all;
clc;
f = inline('x*sin(x)-1');
fplot(f,[0,2]);
hold on;
grid on;
a=0;
b=2;
plot(a,0,'.g');
plot(b,0,'.r');
for i =1:20;
c=(a.*f(b)-b*f(a))./(f(b)-f(a));
if
www.eeworm.com/read/472401/6876708
java lathecurve.java
package Mover3D;
// LatheCurve.java
// Andrew Davison, April 2005, ad@fivedots.coe.psu.ac.th
/* A Lathe Curve is a series of (x,y) points representing a
curve made up of curve segments an
www.eeworm.com/read/472401/6876706
java ellipseshape3d.java
package Mover3D;
// EllipseShape3D.java
// Andrew Davison, July 2003, dandrew@ratree.psu.ac.th
/* An ellipse has a semi-major axis of length a,
and semi-minor axis of length b.
The
www.eeworm.com/read/175698/9536008
m fir_lowpass.m
clc;
clear;
N=300;
f1=1000;
f2=8000;
fs=32000;
t=0:1/fs:(N-1)/fs;
sin1x=sin(2*pi*f1*t);
sin2x=sin(2*pi*f2*t);
sin1xsin2x=0.8*sin1x+0.2*sin2x;
subplot(3,1,1);
plot(sin1x);
title('sin1
www.eeworm.com/read/291380/8422351
m ikeda.m
function [x,y]=ikeda(n,level,mu,x0,y0)
%Syntax: [x,y]=ikeda(n,level,mu,x0,y0)
%_____________________________________
%
% Simulation of the Ikeda map.
% x'=1+mu(xcos(t)-ysin(t)
% y'=mu(xsin
www.eeworm.com/read/181963/9223826
m ikeda.m
%function [x,y]=ikeda(n,mu,x0,y0)
%Syntax: [x,y]=ikeda(n,mu,x0,y0)
%_____________________________________
%
% Simulation of the Ikeda map.
% x'=1+mu*(xcos(t)-ysin(t)
% y'=mu*(xsin(t)+ycos(
www.eeworm.com/read/364017/9925700
m main_ikeda.m
%function [x,y]=ikeda(n,mu,x0,y0)
%Syntax: [x,y]=ikeda(n,mu,x0,y0)
%_____________________________________
%
% Simulation of the Ikeda map.
% x'=1+mu*(xcos(t)-ysin(t)
% y'=mu*(xsin(t)+ycos(