高中的时候做的,前两天看了看,挺好玩的。只想说,当初的代码风格,,,,咳咳,算不上风骚!#include<math.h>
#include<stdio.h>
intmain(void)
{
doubley;
intm,n,x;
for(y=1;y>=-1;y-=0.1)
{
m=acos(y)*10;
n=45*(y-1)+31;
for(x=0;x<=62;x++)..
分类:
其他好文 时间:
2015-04-29 17:34:48
阅读次数:
127
路由器中可能使用的系统是嵌入式的Linux,常用的进程:web服务器 通过浏览器配置路由的参数dhcp服务器 为连接到路由的设备配置动态的IPdns客户端 解析域名cwmp客户端 与远程的ACS(自动配置服务器)交互cos 整个路由的控制中心,分发消息中心cli ...
分类:
其他好文 时间:
2015-04-28 22:46:02
阅读次数:
167
picklehttp://media.blackhat.com/bh-us-11/Slaviero/BH_US_11_Slaviero_Sour_Pickles_WP.pdfhttps://blog.nelhage.com/2011/03/exploiting-pickle/https://lincolnloop.com/blog/playing-pickle-security/>>>importpickletools>>>printpickletools.dis("cos..
分类:
编程语言 时间:
2015-04-27 00:42:32
阅读次数:
160
首先马上毕业了最近在找工作还算有点时间就写点东西吧!
进入主题,首先先思考算法和逻辑。把圆分为八块,每块45度。正上,正下,正左,正右会被X和Y 平分。一边一半各是22.5度。(号外:开始想用 斜率的,但是发现斜率是tan的图像,也就是无限趋近最大值和最小值的不好做判断最后就用了cos也可用sin)思考计算的过程图如下:
准备工作完了就开始...
分类:
其他好文 时间:
2015-04-25 15:11:48
阅读次数:
198
GPS部分GPS_angle[ROLL] = (nav[LON]*cos_yaw_x - nav[LAT]*sin_yaw_y) /10;GPS_angle[PITCH]= (nav[LON]*sin_yaw_y + nav[LAT]*cos_yaw_x) /10;这是二维向量的旋转,导航点的坐标是...
分类:
其他好文 时间:
2015-04-23 19:20:57
阅读次数:
231
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=115
算法分析:
单源最短路问题,spfa或者dijkstra算法
#include
#include
#include
#include
#include
using namespace std;
#define MAX_V 1005
#define INF 1e8
int cos...
分类:
其他好文 时间:
2015-04-23 15:41:42
阅读次数:
182
matplot 代码实例#!/usr/bin/env python# coding=utf-8import numpy as npimport matplotlib.pyplot as pltax = plt.subplot(111)t = np.arange(0,5,0.01)s = np.cos...
分类:
其他好文 时间:
2015-04-18 12:50:38
阅读次数:
213
前言
脑补知识点:
1.向量的内积(数量积,点乘):
公式:a· b = |a| * |b| cos=a.x* b.y + b.x * a.y
2.向量的外积(向量积,差乘):
公式:|c|= |a|*|b|*sin = a.x * b.y - b.x * a.y
点在多边形内判定
多边形: 就是二维平面上被一系列首尾相接、闭合的折线段围成的区域 在程序中一般用定点...
分类:
其他好文 时间:
2015-04-18 10:08:06
阅读次数:
144
1、三角函数 double sin (double);正弦 double cos (double);余弦 double tan (double);正切 2 、反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (doub...
分类:
移动开发 时间:
2015-04-15 12:54:20
阅读次数:
155
(1)在MATLAB中绘图的基本步骤:①定义自变量x的取值范围;②定义函数y;③调用plot(x,y)函数;通过这三部可以绘制出最基本的图形,例子:>>x = [0:0.1:10];>>y = cos(x) ;>>plot(x, y);注:plot函数可以设置的其他参数:①颜色:标识符 r g .....
分类:
其他好文 时间:
2015-04-12 16:10:22
阅读次数:
938