代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/358021/3007628
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/358021/3007631
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/352665/3093798
rd plot.stft.rd
\name{plot.stft}
\alias{plot.stft}
\title{Plot Short Time Fourier Transforms}
\description{
An object of class \code{"stft"} is plotted as a gray scale image.
The x-axis corresponds to time, the y
www.eeworm.com/read/161438/5553580
cpp plot_arr.cpp
#include
#include
const int size = 5;
class plot
{
int x, y;
public:
plot(int i, int j)
{
if(i>size)
i = size;
if(i
www.eeworm.com/read/161300/5554792
m plot_graph.m
function plot_graph(A,xy)
% Dessine un graph en l'applattissant avec diverses
% m閠hodes.
%
% Copyright (c) 2003 Gabriel Peyr
www.eeworm.com/read/161300/5554793
m plot_triangulation.m
function plot_triangulation(A,xy,vertex,face)
% Dessine une triangulation en l'applattissant avec diverses
% m閠hodes.
%
% Copyright (c) 2003 Gabriel Peyr
www.eeworm.com/read/160391/5571175
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,:) =
www.eeworm.com/read/123021/6787427