代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/304591/3796299
m my_plot.m
function my_plot(x,y)
% newplot返回当前坐标轴的句柄
cax = newplot;
LSO = ['- ';'--';': ';'-.'];
set(cax,'FontName','Times','FontAngle','italic')
set(get(cax,'Parent'),'MenuBar','none')
line_handles = lin
www.eeworm.com/read/304591/3796430
m plot_snr.m
clear;
%用来仿真QAM的误bit率
snr=1:1:11;
%先来计算理论误bit率
error_theory=(1-(1-(2*(1-1/sqrt(16))*1/2*erfc(1/sqrt(2)*sqrt(3*4*10.^(snr/10)/(16-1))))).^2)/4;
%用理论的误bit率来决定需要仿真的点数
N=floor(1./error_theory)*100+1
www.eeworm.com/read/304591/3796433
m plot_astrology.m
function plot_astrology(a,b)
%画出星座图
figure(1)
subplot(1,1,1)
plot(a,b,'*');
axis([-5 5 -5 5]);
line([-5,5],[0,0],'LineWidth',3,'Color','red');
line([0,0],[-5,5],'LineWidth',3,'Color','red');
t
www.eeworm.com/read/301403/3840220
tcl rtm_plot.tcl
#
# routines to perform post processing, mostly for plotting
#
Class PostProcess
PostProcess instproc init { l lf lg gf gg bf bg } {
$self instvar linkflowfile_ linkgraphfile_
$self
www.eeworm.com/read/298558/3862927
py np_plot.py
#! /usr/bin/env python
###############################################################################
# #
# Copyright 200
www.eeworm.com/read/294145/3919764
pro simple_plot.pro
TARGET = simple
TEMPLATE = app
CONFIG += qt warn_on debug thread
MOC_DIR = moc
OBJECTS_DIR = obj
INCLUDEPATH = ../../include
DEPENDPATH = ../../include
unix:LIBS += -L../../li
www.eeworm.com/read/294145/3919808
pro realtime_plot.pro
TARGET = realtime
TEMPLATE = app
CONFIG += qt warn_on debug thread
MOC_DIR = moc
OBJECTS_DIR = obj
INCLUDEPATH = ../../include
DEPENDPATH = ../../include
unix:LIBS += -L../../
www.eeworm.com/read/294145/3919825
h bode_plot.h
#include
class BodePlot: public QwtPlot
{
Q_OBJECT
public:
BodePlot(QWidget *parent);
public slots:
void setDamp(double damping);
private:
void showData(double *frequen
www.eeworm.com/read/294145/3919828
cpp bode_plot.cpp
#include
#include "cplx.h"
#include "bode_plot.h"
BodePlot::BodePlot(QWidget *parent):
QwtPlot(parent)
{
setTitle("Frequency Response of a Second-Order System");
setCanvasBa
www.eeworm.com/read/294145/3919839
cpp data_plot.cpp
#include
#include
#include
#include
const int PLOT_SIZE = 201; // 0 to 200
//-------------------------------------------------------------