代码搜索:Plot

找到约 10,000 项符合「Plot」的源代码

代码结果 10,000
www.eeworm.com/read/141300/5770930

c com_plot.c

#include #include #include #include #include "plotting/plotit.h" #include "com_plot.h" /* plot name ... [xl[imit]] xlo xhi] [yl[imit ylo yhi] [vs xnam
www.eeworm.com/read/141300/5771000

h plot5.h

/************* * Header file for plot5.c * 1999 E. Rouat * $Id: plot5.h,v 1.2 2005/05/30 20:28:45 sjborley Exp $ ************/ #ifndef PLOT5_H_INCLUDED #define PLOT5_H_INCLUDED int Plt5_Init(voi
www.eeworm.com/read/141300/5771003

c plot5.c

/********** Copyright 1990 Regents of the University of California. All rights reserved. $Id: plot5.c,v 1.4 2005/05/30 20:28:45 sjborley Exp $ **********/ #include #include #in
www.eeworm.com/read/141300/5771025

h com_plot.h

#ifndef _COM_PLOT_H #define _COM_PLOT_H void com_plot(wordlist *wl); #endif
www.eeworm.com/read/140847/5779133

m mixexp_plot.m

function plot_mixexp(theta, eta, data) % PLOT_MIXEXP Plot the results for a piecewise linear regression model % plot_mixexp(theta, eta, data) % % data(l,:) = [x y] for example l % theta(i,:) = regre
www.eeworm.com/read/133952/5896772

m stem_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; stem(x,y); title('\bfExample of a Stem Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);
www.eeworm.com/read/133952/5896773

m bar_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; bar(x,y); title('\bfExample of a Bar Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);
www.eeworm.com/read/133952/5896778

m compass_plot.m

x = [ 2 -2 1 3 -1]; y = [ 2 2 -2 1 -3]; compass(x,y); title('\bfExample of a Compass Plot'); grid on
www.eeworm.com/read/133952/5896779

m stair_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; stairs(x,y); title('\bfExample of a Stair Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);
www.eeworm.com/read/133952/5896782

m test_plot.m

t = 0:0.1:10; x = exp(-0.2*t) .* cos(2*t); y = exp(-0.2*t) .* sin(2*t); plot(x,y,'LineWidth',2); title('\bfTwo-Dimensional Line Plot'); xlabel('\bfx'); ylabel('\bfy'); axis square; grid on;