1、 plot(1:10) abline(h=5,col="red",lty=2,lwd = 3) 2、 plot(1:10) abline(h=c(2,4,6),col="red",lwd=3) 3、 plot(1:10) abline(v=c(2,4,8), col = "blue", lwd ...
分类:
编程语言 时间:
2021-04-19 14:42:40
阅读次数:
0
SeetaFace6的readme文档 # **SeetaFace6** [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE) [[中文]()] ## 开源模块 `SeetaFace6`是中科视拓最新开源的商 ...
分类:
其他好文 时间:
2021-03-10 13:37:00
阅读次数:
0
一、题目描述 输入一个英文句子,翻转句子中单词的顺序,但单词内字符的顺序不变。为简单起见,标点符号和普通字母一样处理。例如输入字符串"I am a student. ",则输出"student. a am I"。 示例 1 输入: "the sky is blue"输出: "blue is sky ...
分类:
其他好文 时间:
2021-03-01 14:16:17
阅读次数:
0
CSS ##选择器 类选择器 . id选择器 # 标签选择器 某标签名 嵌入方式: - 行内 style="color:blue" - 内部<style type="text/css"> - 外部<link href="demo.css" rel="stylesheet"> 高级选择器: first ...
分类:
Web程序 时间:
2021-01-28 12:12:11
阅读次数:
0
题目: Monocarp had a sequence a consisting of n+m integers a1,a2,…,an+m. He painted the elements into two colors, red and blue; n elements were painted ...
分类:
其他好文 时间:
2021-01-20 12:13:42
阅读次数:
0
ShaderMask( child: Text("爱音乐的孩子是小白", style: TextStyle(color: Colors.blue)), shaderCallback: (bounds) => RadialGradient( center: Alignment.topLeft, rad ...
分类:
其他好文 时间:
2021-01-04 11:16:41
阅读次数:
0
快速运行 1、查找镜像 官方推荐使用的镜像是jenkinsci/blueocean,该镜像包含当前的长期支持 (LTS) 的 Jenkins 版本 (可以生产使用) ,并捆绑了所有 Blue Ocean 插件和功能。 2、拉取镜像 docker pull jenkinsci/blueocean 3、 ...
分类:
其他好文 时间:
2021-01-04 11:07:57
阅读次数:
0
#1. 内联样式 不推荐 在标签内使用style属性指定css代码 hello css *** #2.内部样式 在head标签内 ,定义style标签 style标签的标签体内容就是css代码 页面 /*作用域为div*/ div{ color:blue; } #3.外部样式 定义css资源文件 2 ...
分类:
Web程序 时间:
2020-12-11 12:07:21
阅读次数:
7
#1from turtle import* pensize(8) color("black") up() goto(50,0) down() circle(100) color("blue") up() goto(-170,0) down() circle(100) color("red") up( ...
分类:
其他好文 时间:
2020-11-26 14:11:54
阅读次数:
5
1 #include <stdio.h> 2 #include <wiringPi.h> 3 #include <softPwm.h> 4 5 const int Red_Pin = 9; 6 const int Green_Pin = 10; 7 const int Blue_Pin = 11; ...
分类:
编程语言 时间:
2020-11-25 12:45:11
阅读次数:
8