代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/402601/11532170
m make_plot.m
function make_plot(v, w, rp, Nlevs, xlim, ylim, str1, str2)
% function make_plot(w, v, rp, Nlevs, xlim, ylim)
r0 = 1;
r1 = -(rp.a1/(1+rp.a2));
R = [r0 r1; r1 r0];
wo = [-rp.a1; -rp.a2];
www.eeworm.com/read/402601/11532180
m plot_p.m
% remake figure 5.17
figure
load run5;plot(mean(Wx'), '--'); hold on
mu=rp.mu; n=1:5000;
a=-0.99; lambda=abs(a); Ew1=-a+a*(1-mu*lambda).^n;
a=0.99; lambda=abs(a); Ew2=-a+a*(1-mu*lambda).^n;
www.eeworm.com/read/402601/11532193
m plot_mvdr.m
function plot_mvdr(name)
eval(['load ' name]);
% test vectors for spatially sampled response
W_H = conj(W(Ndata, :));
st = -1 : 0.025 : 1;
est = exp(-j*pi*[0:(rp.p-1)]'*st);
www.eeworm.com/read/400947/11566745
m plot_result.m
plot(xyreal(1,1:2:14),xyreal(3,1:2:14),'r*-')
hold on
plot(xyreal(1,2:2:14),xyreal(3,2:2:14),'r*-')
hold on
plot(x_init(1,1:7),x_init(4,1:7),'g*-')
hold on
plot(x_init(1,8:14),x_init(4,8:14)
www.eeworm.com/read/400576/11573588
m plot_mst.m
function plot_mst(a,tree,c,lwidth)
%PLOT_MST Plot minimum spanning tree
%
% PLOT_MST(A,TREE,STR,LWIDTH)
%
% Plots the edges of a minimum spanning tree, defined by the nodes A and
% TREE
%
% INPUT
www.eeworm.com/read/400379/11578162
m plot_mvdr.m
function plot_mvdr(name)
eval(['load ' name]);
% test vectors for spatially sampled response
W_H = conj(W(Ndata, :));
st = -1 : 0.025 : 1;
est = exp(-j*pi*[0:(rp.p-1)]'*st);
www.eeworm.com/read/400232/11580284
m plot_objective.m
%% Script to plot MOP1
% This scripts plot the objective space for MOP1 given in Homework
% Assignment # 5. It used the function eveluate_objective to determine the
% objective values and plots the
www.eeworm.com/read/347866/11629809
m plot_spec.m
function [freq,ff,h]=plot_spec(f,dt)
nfft = 2^nextpow2(length(f));
ff = fft(f(:),nfft);
ff = abs(ff(2:nfft/2+1));
freq = [1:nfft/2]' /(nfft*dt) ;
h=loglog( freq, ff );
xlabel('Frequency')
www.eeworm.com/read/261198/11659550
m plot_ellipse.m
% PLOT_ELLIPSE
% h=plot_ellipse(x,y,theta,a,b)
%
% This routine plots an ellipse with centre (x,y), axis lengths a,b
% with major axis at an angle of theta radians from the horizontal.
%
% Author: P.
www.eeworm.com/read/261198/11659592
m plot_matrix.m
function plot_matrix(G, bw)
% PLOT_MATRIX Plot a 2D matrix as a grayscale image, and label the axes
%
% plot_matrix(M)
%
% For 0/1 matrices (eg. adjacency matrices), use
% plot_matrix(M,1)
if nargin