代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/143498/12870613

m xorsurf.m

% Surface plot for XOR FIS blackbg; subplot(2,2,1); xorfis = readfis('xor.fis'); gensurf(xorfis); view([-20 55]); set(gca, 'box', 'on'); %frot3d on
www.eeworm.com/read/244284/12875050

dos-1 menu.dos-1

4. Number of dispersions to be examined: 3 > Dispersions are: 0.30000 0.40000 0.50000 > Files for the plot: dos.dsp1_1 , ... , dos.dsp3_1 > Files with smear
www.eeworm.com/read/244284/12875051

dens-lev00 menu.dens-lev00

...... Choose between line or plane ...... NUMBER OF THE CURRENT PLOT: 1 1. Plot density along a line 2. Plot density in a plane 3. Amount of charge inside a sphere 4. Exploration
www.eeworm.com/read/244284/12875215

menu_lev00-3

...... Choose between line or plane ...... NUMBER OF THE CURRENT PLOT: 1 1. Plot density along a line 2. Plot density in a plane 3. Amount of charge inside a sphere 4. Exploration
www.eeworm.com/read/143419/12878081

asv ex min gang.asv

clear k=input('please input 投资额k='); b=input('please input 年销售收入b='); c=input('please input 年成本c='); l=input('please input 残值l='); n=input('please input 寿命期n='); r=input('please input 利率r='); n
www.eeworm.com/read/143419/12878181

asv ex min gang.asv

clear k=input('please input 投资额k='); b=input('please input 年销售收入b='); c=input('please input 年成本c='); l=input('please input 残值l='); n=input('please input 寿命期n='); r=input('please input 利率r='); n
www.eeworm.com/read/143410/12878427

m lishuai.m

x1=[1,30,50,40,60,540,40,60;10,23,60,30,20,4,10,23]; x2=-[130,150,140,110,150;10,30,60,30,20]; x3=[22,21,40,60,540,34,55,6,54;-12,-10,-23,-60,-23,-57,-76,-76,-22]; w1=ones(1,3);w2=ones(1,3);w3=on
www.eeworm.com/read/143198/12889691

m exp2_4_.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; hold on %允许在同一坐标系下绘制不同的图形 plot(t,sin(t),'r:*') plot(t,cos(t)) plot(t,-cos(t),'k') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 hold off %覆盖旧图
www.eeworm.com/read/143198/12889715

m exp2_4.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; figure(1) %选择图像 plot(t,sin(t),'r:*') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 grid off %删除栅格 figure(2) plot(t,cos(t)) grid on grid off
www.eeworm.com/read/244035/12897369

m ex_07_06_1.m

% ex_07_06_1.m : 习题 7.6 clear all; N=31; wr=boxcar(N); % for boxcar window; [WR,f]=freqz(wr,1,256,'whole',1); WR=20*log10(abs(WR)/abs(WR(1))); wt=triang(N); % for triangle window [WT,f]=f