代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/407519/2262705
py plot.py
# Import matplotlib
from pylab import *
import os.path
# Import solution
from solution import *
# Plot solution
figure(1)
plot(t, u[:, 0], t, u[:, 1], t, u[:, 2])
xlabel('t')
ylabel('U(t)')
title('
www.eeworm.com/read/407519/2262709
py plot.py
# Import matplotlib
from pylab import *
# Import solution
from solution import *
# Plot first component of solution
subplot(211)
plot(t, u[:,0])
grid(True)
xlabel('t')
ylabel('V(t)')
title('Courtema
www.eeworm.com/read/407519/2262714
py plot.py
# Import matplotlib
from pylab import *
# Import solution
from solution import *
# Plot solution
plot(t, u[:,0], t, u[:,1])
xlabel('t')
ylabel('U(t)')
title('Complex exponential')
show()
www.eeworm.com/read/407519/2262724
py plot.py
# Import matplotlib
from pylab import *
#--- Test problem 1 ---
from solution_1 import *
figure(1)
plot(t, u)
#--- Test problem 2 ---
from solution_2 import *
figure(2)
plot(t, u[:,0], t, u[:,1])
#
www.eeworm.com/read/407519/2262748
py plot.py
from dolfin import *
mesh = Mesh("mesh2D.xml.gz")
mesh_function = MeshFunction("real", mesh, "meshfunction.xml")
plot(mesh_function)
www.eeworm.com/read/407519/2262992
h plot.h
// Copyright (C) 2007 Anders Logg.
// Licensed under the GNU LGPL Version 2.1.
//
// First added: 2007-05-02
// Last changed: 2007-05-07
#ifndef __PLOT_H
#define __PLOT_H
#include
#include
www.eeworm.com/read/407519/2262993
cpp plot.cpp
// Copyright (C) 2007 Anders Logg.
// Licensed under the GNU LGPL Version 2.1.
//
// First added: 2007-05-02
// Last changed: 2007-06-13
#include
#include
#include
www.eeworm.com/read/407519/2263391
py plot.py
import os
__all__ = ['Viper', 'plot', 'update', 'interactive', 'save_plot', 'figure']
if os.environ.has_key('DOLFIN_NOPLOT'):
from dolfin import File
def ignore(*args, **kwargs):
pa
www.eeworm.com/read/406580/2276171
java plot.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (
www.eeworm.com/read/399211/2364363
m plot.m
function plot(obj)
% PLOT Plot the sensor array sample data set
% Example:
% plot(ds);
clf
surf(real(obj.Data)',...
'EdgeLighting','flat','FaceLighting','none',...
'FaceColor',[1 1 1