代码搜索:Plot

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

代码结果 10,000
www.eeworm.com/read/376825/2706882

js plot.js

/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licens
www.eeworm.com/read/376448/2710656

js plot.js

/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licens
www.eeworm.com/read/374323/2754455

js plot.js

/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licens
www.eeworm.com/read/373367/2762592

py plot.py

#----------------------------------------------------------------------------- # Name: wx.lib.plot.py # Purpose: Line, Bar and Scatter Graphs # # Author: Gordon Williams # # Created:
www.eeworm.com/read/373367/2764681

plot readme.plot

* gr_plot_*.py: These are a collection of Python scripts to enable viewing and analysis of files produced by GNU Radio flow graphs. Most of them work off complex data produced by digital waveforms.
www.eeworm.com/read/369339/2800885

6 plot.6

.th PLOT VI 3/10/75 .sh NAME plot: tek, gsip, vt0 \*- graphics filters .sh SYNOPSIS source | .bd tek .br source | .bd gsip .br source | .bd vt0 .sh DESCRIPTION These commands produce graphical output
www.eeworm.com/read/369339/2801040

7 plot.7

.th PLOT VII 2/25/75 .sh NAME plot: openpl et al. \*- graphics interface .sh SYNOPSIS .nf .ft B openpl( ) .s3 erase( ) .s3 label(s) char s[ ]; .s3 line(x1, y1, x2, y2) .s3 circle(x, y, r) .s3 arc(x, y
www.eeworm.com/read/369339/2801419

s plot.s

/ / / move, line sct = 2 / fortran vt0 interfaces / erase screen erase.: temp .+2 jsr pc,setfil mov f,r0 sys write; erase; 2 jmp retrn / move(x, y) / / sets current x,y to arguments / .glob
www.eeworm.com/read/366696/2884965

tcl plot.tcl

# plot.tcl -- # # This demonstration script creates a canvas widget showing a 2-D # plot with data points that can be dragged with the mouse. # # RCS: @(#) $Id: plot.tcl,v 1.3 2001/06/14 10:56:58 dkf
www.eeworm.com/read/365521/2896706

m plot.m

function plot(p) % POLYNOM/PLOT plot(p) 绘出多项式p. r = max(abs(roots(p))); x = (-1.1:0.01:1.1)*r; y = polyval(p,x); plot(x,y); title(char(p)) grid on