代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/455033/7378607
pl dotest.pl
#!/usr/bin/perl
# -- so option
##$f="10 + 1/(1+ 100**(sin(x*3)-y)) ";
$f = "10 + sin(x/10)*cos(y/3)";
$err=0.001;
$errg=0.05;
$nbiteration=3;
$bamg="../../bamg-g";
$quadoption="";
$bamgoption=" -Ab
www.eeworm.com/read/455033/7379335
cpp ffglut.cpp
#ifdef __APPLE__
#include
#else
#include
#endif
//#include
#include
#include
#include
#include
#include
using namespa
www.eeworm.com/read/454974/7380758
m fourier.m
% Numerical Inversion of Laplace Transforms:
% The Fourier Series Approximation
% Author's Data: Housam BINOUS
% Department of Chemical Engineering
% National Institute of Applied Sciences and
www.eeworm.com/read/454809/7382683
m 例5-4.m
>> t=0:0.2:2*pi;
>> plot(t,sin(t),'>',t,cos(t),'+');
>> xlabel('x'),ylabel('y');
>> title('sin(x) and cos(x)');
>> legend('sin wave','cos wave')
www.eeworm.com/read/454809/7382727
m 例2-28.m
>> clear;
>> a=[-1,0,0;0,-2,0;0,0,-3]
>> x0=[1;1;1];
>> t=0:0.1:1.0;
>> for i=1:length(t)
>> plot3(x(1,:),x(2,:),x(3,:));
>> grid on
www.eeworm.com/read/454809/7382783
m 例8-9.m
>> u=test.time;
>> x1=test.signals.values;
>> plot(u,x1),grid on
>> xlabel('kT')
>> ylabel('x1(KT)')
www.eeworm.com/read/454809/7382784
m 例8-7.m
>> [t,x,y]=sim('test2',10);
>> clf,hold on
>> plot(t,y(:,1),'b')
>> stairs(t,y(:,2),'r')
>> stairs(t,y(:,3),'g'),hold off
>> axis([0 10 -1.1 1.1]),box on
>> legend('正弦波','输出','三角形',4)
www.eeworm.com/read/454542/7387752
txt 2psk.txt
l=linspace(0,pi,50);% 数据初始化
t=linspace(0,9*pi,450);
b=1:1:9;
out=1:1:450;
f=1:1:450;
g=1:1:450;
w1=2 %正弦波f1的频率,可以根据自己想要的频率在此改写
%正弦波f2的频率,可以根据自己想要的频率在此改写
f1=sin(w1*l);
figure(
www.eeworm.com/read/453968/7403239
m xindianzyj1.m
clear all
close all;
load('xindian1.txt');
y=xindian1(:,1);
n=(0:0.004:60)';
y=y(1:1:1000);
n=n(1:1:1000);
subplot(8,1,1)
%subplot(2,4,1)
plot(n,y);
title('心电信号')
wn=0.3;
N=3;
[b,a]=b
www.eeworm.com/read/453434/7420729
m fig3_07.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Figure 3.7
% Kaiser weighting
% (a)weighting for beta = 3 and 6
% (b)Beam patterns for beta = 3 and 6
% Xin Zhang updated 3/17/99
% Lillian Xiaolan Xu upd