当前位置:网站首页>Ind FXL first week
Ind FXL first week
2022-07-03 10:31:00 【IFI_ rccsim】
IND-fxl- The first week
markdown Some uses of
Basic applications
- # Number means Title Progression
- This is italics
- This is bold
- This is bold and italic
In this way, add a strikeout to the word- Underline
- This adds highlights
- Add subscript , Use , Such as H2~
- Add superscript , Use , Such as x2^
- Use more than three asterisks 、 minus sign 、 Bottom line to create a separation line (ps: There can't be anything else in a line )
1. # Number means Title Progression
2. * This is italics *
3. ** This is bold **
4. *** This is bold and italic ***
5. ~~ In this way, add a strikeout to the word ~~
6. <u> Underline </u>
7. == This adds highlights ==
8. Add subscript , Use ~, Such as H~2~
9. Add superscript , Use ^, Such as x^2^
10. Use more than three asterisks 、 minus sign 、 Bottom line to create a separation line (ps: There can't be anything else in a line )
footnote
Use [^name] Add footnotes
Such as : This is my markdown1 Learning notes
list
Unordered list
- Use the asterisk (*)、 plus (+) Or a minus sign (-) As a list marker , These tags are followed by a space , Then fill in the content
- Jump out of the list and press enter
Ordered list
- Use numbers and add . The sign means
- Digital plus . Space after
Definition list
- Definition list
- It consists of nouns and explanations . Write the definition in one line , Follow the line with an explanation . The writing of explanation : Followed by an indent (Tab)
block
- Block references are used at the beginning of a paragraph > Symbol , Followed by a space symbol
- One > Symbols are the outermost layer , Two > Symbols are the first level of nesting
Outermost layer
The first layer is nested
The second layer is nested
Code
printf(" Single line code is used wrap up ")`
#include <iostream>
int main()
{
std::cout << "Hello, typora";
printf(" A piece of code is used ``` wrap up “);
}
link
Our football defensive formation
The defensive formation in the team is 4-3-2 Formation , It is divided into interception part 4 people 、 The part surrounding the ball 3 people 、 The connecting part 2 people
Interception part
double distance = abs(tball.getDistanceTo(VecPosition(-15.0,0.0,0.0))-(1.8/cos(angBallToMyGoal)));
Set four players in distance On the quintiles of
The part surrounding the ball
double theta=pow(0.9,abs(x));
VecPosition ppp = VecPosition(-2.5*theta,0.0,0.0);
deam_position.push_back(ppp + VecPosition(x,y,0));
deam_position.push_back(VecPosition((distance-1.5)*cos(angBallToMyGoal)-14, (distance-1.5)*sin(angBallToMyGoal)+1.8*tan(angBallToMyGoal)+0.8,0));
deam_position.push_back(VecPosition((distance-1.5)*cos(angBallToMyGoal)-14, (distance-1.5)*sin(angBallToMyGoal)+1.8*tan(angBallToMyGoal)-0.8,0));
One of the players is directly behind the ball , The other two players are some distance away from the ball , And with distance Form a certain angle
The connecting part
if(x < -3) {
deam_position.push_back(VecPosition(x+8, 0, 0));
}
else {
deam_position.push_back(VecPosition(6, 0, 0));
}
deam_position.push_back(VecPosition(10.5, 0, 0));
One is directly in front of the ball , The other is standing in front of the opponent's goal
- The above defensive formation needs to be optimized , See above “ Detailed explanation of football formation ” Link improvement
markdown It's a plain text markup language ︎
边栏推荐
- Leetcode刷题---1385
- Ut2013 learning notes
- Flutter 退出当前操作二次确认怎么做才更优雅?
- Hands on deep learning pytorch version exercise solution - 2.5 automatic differentiation
- 3.2 Off-Policy Monte Carlo Methods & case study: Blackjack of off-Policy Evaluation
- Deep learning by Pytorch
- Several problems encountered in installing MySQL under MAC system
- Label Semantic Aware Pre-training for Few-shot Text Classification
- Hands on deep learning pytorch version exercise solution - 3.1 linear regression
- 【SQL】一篇带你掌握SQL数据库的查询与修改相关操作
猜你喜欢

Simple real-time gesture recognition based on OpenCV (including code)

ECMAScript--》 ES6语法规范 ## Day1

High imitation wechat

Out of the box high color background system

MySQL报错“Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre”解决方法

1. Finite Markov Decision Process

3.2 Off-Policy Monte Carlo Methods & case study: Blackjack of off-Policy Evaluation

A complete answer sheet recognition system

Leetcode - the k-th element in 703 data flow (design priority queue)

八、MySQL之事务控制语言
随机推荐
. DLL and Differences between lib files
Leetcode - 706 design hash mapping (Design)*
A super cool background permission management system
Realize an online examination system from zero
20220603数学:Pow(x,n)
Hands on deep learning pytorch version exercise answer - 2.2 preliminary knowledge / data preprocessing
20220601数学:阶乘后的零
Raspberry pie 4B installs yolov5 to achieve real-time target detection
Deep learning by Pytorch
Out of the box high color background system
Secure in mysql8.0 under Windows_ file_ Priv is null solution
ECMAScript--》 ES6语法规范 ## Day1
GAOFAN Weibo app
重写波士顿房价预测任务(使用飞桨paddlepaddle)
实战篇:Oracle 数据库标准版(SE)转换为企业版(EE)
Leetcode-513:找树的左下角值
Ut2015 learning notes
Anaconda安装包 报错packagesNotFoundError: The following packages are not available from current channels:
Matplotlib drawing
Leetcode刷题---263