码迷,mamicode.com
首页 >  
搜索关键字:square    ( 2122个结果
批量最小二乘算法(Least Square,LS)
最小二乘法大约是1795年高斯在其著名的形体运动轨道预报研究工作中提出的。由于原理简单、收敛较快、易于理解、易于编程实现等特点,在系统参数估计中应用相当广泛。 最小二乘法以CAR模型推导而得,CAR模型如下: 式中,为白噪声,结构参数和 d 均已知,并且 参数估计的任务是根据可测量的输入和输出,确定 ...
分类:编程语言   时间:2018-03-27 18:44:24    阅读次数:795
canvas线条的属性
一、线条的帽子lineCap 取值:butt(默认值),round圆头,square方头 var canvas=document.getElementById("canvas"); canvas.width=800; canvas.height=800; var context=canvas.get ...
分类:其他好文   时间:2018-03-27 10:25:54    阅读次数:259
Lisp经典算法
求平方根 SUCCESSIVE AVERAGING DUE TO HERON OF ALEXANDRIA TO FIND AN APPROXIMATION TO SQRT(X) 1. MAKR A GUESS G 2. IMPROVE THE GUESS BY AVERAGING G AND X/G ...
分类:编程语言   时间:2018-03-26 22:26:47    阅读次数:246
LeetCode 59 Spiral Matrix II 螺旋矩阵之二
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example,Given n = 3, You should return the followi ...
分类:其他好文   时间:2018-03-25 16:58:31    阅读次数:140
[LeetCode] 221. Maximal Square 最大正方形
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. For example, given the following ma ...
分类:其他好文   时间:2018-03-21 11:51:50    阅读次数:142
五熊红旗
import turtle # def draw_square(org_x, org_y, x, y): turtle.setpos(org_x, org_y) # to left and bottom connor turtle.color('red', 'red') turtle.begin_f... ...
分类:其他好文   时间:2018-03-19 10:57:46    阅读次数:239
8、CSS 列表样式
CSS列表属性作用如下: 设置不同的列表项标记为有序列表 设置不同的列表项标记为无序列表 设置列表项标记为图像 list-style-type 规定了无序列表以及有序列表的项目标记符号的样式 取值: disc:实心圆(CSS1)circle:空心圆(CSS1)square:实心方块(CSS1)dec ...
分类:Web程序   时间:2018-03-17 21:36:58    阅读次数:370
山东省第六届省赛 H题:Square Number
Description In mathematics, a square number is an integer that is the square of an integer. In other words, it is the product of some integer with its ...
分类:其他好文   时间:2018-03-17 16:16:01    阅读次数:151
Python基础-画五星红旗
#coding=utf-8 # arrow(海龟箭头);turtle(实心箭头);circle(实心方形箭头);square(粗大箭头2);triangle(classic) from turtle import * def position(x,y): up() goto(x,y) down() ... ...
分类:编程语言   时间:2018-03-14 23:46:15    阅读次数:609
笔记列表
笔记列表 使用#define含参时,参数括号很重要,如上例中省略括号会导致运算错误: #include #define square(x) ((x) * (x)) #define square_1(x) (x * x) int main(void) { printf("square 5+4 is %... ...
分类:其他好文   时间:2018-03-09 20:33:48    阅读次数:135
2122条   上一页 1 ... 60 61 62 63 64 ... 213 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!