代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/407515/11417959

m a14.m

m=101; n=20; t=linspace(-1,1,m); y=rand(1,m); c=polyfit(t,y,n-1); A=zeros(m,n); y=y'; for i=1:n for j=1:m A(j,i)=y(j)^(i-1); end end [U,S,V]=svd(A); [Q,R]=qr(A); plot
www.eeworm.com/read/407515/11417960

m a24.m

m=101; n=20; t=linspace(-1,1,m); e=10^(-12); y=exp(t)+e*randn(1,m); c=polyfit(t,y,n-1); y=y'; A=zeros(m,n); for i=1:n for j=1:m A(j,i)=y(j)^(i-1); end end [U,S,V]=sv
www.eeworm.com/read/407515/11417964

m a13.m

m=101; n=20; t=linspace(-1,1,m); y=rand(1,m); c=polyfit(t,y,n-1); A=zeros(m,n); y=y'; for i=1:n for j=1:m A(j,i)=y(j)^(i-1); end end [U,S,V]=svd(A); plot(U(:,2)) hold
www.eeworm.com/read/407515/11417968

m 2.m

clear all m=101; n=20; t=linspace(-1,1,m); for i=1:m for j=1:n y(i)=exp(t(i)); A(i,j)=exp(t(i)); end end y=y'; [U,S,V]=svd(A); [Q,R]=qr(A); for k=1:rank(A)
www.eeworm.com/read/407515/11417974

m a21.m

m=101; n=20; t=linspace(-1,1,m); y=exp(-t); c=polyfit(t,y,n-1); y=y'; A=zeros(m,n); for i=1:n for j=1:m A(j,i)=y(j)^(i-1); end end [U,S,V]=svd(A); b=U'*y; plot(
www.eeworm.com/read/407367/11420239

m runsteamcondenser.m

% function runsteamcondenser % RUNSTEAMCONDENSER Examples to show how to use the steam condenser model. % By Yi Cao at Cranfield University on 24 January 2008 % Example 1 %% K=10.8;
www.eeworm.com/read/407093/11429506

m spypart.m

function spypart(S, rp, cp); %SPYPART Spy plot with partitioning. % SPYPART(S,rp,cp) plots the sparsity pattern of a matrix S, % with lines marking a block partition described by % rp (rows) an
www.eeworm.com/read/406910/11432759

m cdfplotlow.m

function cdfplotlow(x, plottype) % DESCRIPTION cdfplotlow(x, plottype) % CDF plot of the input matrix for each % column separately. By use of a log scale % the lower part of the input is highlight
www.eeworm.com/read/406910/11432811

m cdfplothigh.m

function cdfplothigh(x, plottype) % DESCRIPTION cdfplothigh(x, plottype) % CDF plot of the input matrix for each % column separately. By use of a log scale % the higher part of the input is highli
www.eeworm.com/read/406902/11432965

m f12_1.m

%读信号 load noisbump x = noisbump; %3层小波包分解 t = wpdec(x,3,'db2'); %显示小波包树结构 fig = plot(t);