码迷,mamicode.com
首页 >  
搜索关键字:plot    ( 1118个结果
HDU3853 概率DP
LOOPS LOOPS Homura wants to help her friend Madoka save the world. But because of the plot of the Boss Incubator, she is trapped in a labyrinth called ...
分类:其他好文   时间:2018-08-26 10:31:56    阅读次数:127
matlab 绘制圆锥螺旋线
v=20; t=[0:0.01*pi:50*pi]; alpha=pi/6; omega=pi/6; x=v*sin(alpha)*t.*cos(omega*t); y=v*sin(alpha)*t.*sin(omega*t); z=v*cos(alpha)*t; plot3(x,y,z,'r','... ...
分类:其他好文   时间:2018-08-25 21:20:46    阅读次数:876
绘制针状图
t=[0:0.5:25]; y=exp(-t/3)+sin(1+2*t); h=stem(t,y,'--'); set(get(h,'baseline'),'linestyle',':'); %把水平轴设置成: 的形状 set(h,'markerfacecolor','yellow'); hold ... ...
分类:其他好文   时间:2018-08-25 20:36:07    阅读次数:453
ezplot (fplot见matlab 宝典)
%% ezplot 无需指定自变量的范围 syms t % 将 t 设置为符号变量 y=3/4*(exp(-2*t/3)*sin(1+2*t)); ezplot(y,[pi,3*pi]); ...
分类:其他好文   时间:2018-08-25 11:38:49    阅读次数:136
subplot 设置不一样的图片大小和位置
t=[0:0.1:25]; y1=exp(-t/3); y3=sin(2*t+3); y2=log(t+1); subplot(2,2,1) plot(t,y1,'linewidth',2) subplot(2,2,2) plot(t,y2,'linewidth',2) % subplot(2,2,... ...
分类:其他好文   时间:2018-08-25 11:26:11    阅读次数:602
绘制双坐标轴的图形3-不同的plot类型
Income=[2456,2032,1900,2450,2890,2280]; Profit_margin=[12.5,11.3,10.2,14.5,14.3,15.1]/100; t=1:6; [AX,H1,H2]=plotyy(t,Income,t,Profit_margin,'bar','pl... ...
分类:其他好文   时间:2018-08-24 22:51:18    阅读次数:274
绘制包络线
x=0.:pi/8:4*pi; y=exp(-x/3).*sin(3*x); yb=exp(-x/3); plot(x,yb,'k-',x,-yb,'k-',x,y,'-ro','linewidth',2,'markeredgecolor','g','markerfacecolor','y','ma... ...
分类:其他好文   时间:2018-08-24 20:03:26    阅读次数:202
Mathematica
a = 2/123 a //输出的还是2/123 N[a] //输出的就是小数点 N[a,2] //保留三位小数点 Clear[a] Solve[2== x^2-7 , x] //结果-3 和 3 Plot[Sin[x], {x, 0, pi}]... ...
分类:其他好文   时间:2018-08-24 13:32:07    阅读次数:252
k均值聚类
目录 一.k均值简介 二.应用简介 三.算法 四.选择合适的K 五.具体实例 目录 一.k均值简介 二.应用简介 三.算法 四.选择合适的K 五.具体实例 目录 一.k均值简介 二.应用简介 三.算法 四.选择合适的K 五.具体实例 目录 一.k均值简介 二.应用简介 三.算法 四.选择合适的K 五 ...
分类:其他好文   时间:2018-08-23 02:24:17    阅读次数:370
sklearn中xgboost模块中plot_importance函数(特征重要性)
# -*- coding: utf-8 -*- """ ############################################################################### # 作者:wanglei5205 # 邮箱:wanglei5205@126.com ... ...
分类:其他好文   时间:2018-08-22 21:47:26    阅读次数:3562
1118条   上一页 1 ... 45 46 47 48 49 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!