upload 初始文档
This commit is contained in:
parent
86822714a8
commit
7e17efd0ac
12
git常用命令.md
Normal file
12
git常用命令.md
Normal file
@ -0,0 +1,12 @@
|
||||
# git常用命令
|
||||
|
||||
```
|
||||
git config --global --unset http.proxy//取消http代理
|
||||
git config --global --unset https.proxy//取消https代理
|
||||
git add . // 添加所有修改文件
|
||||
git commit -am “” //添加所有修改文件的commit
|
||||
git push origin master //上传代码到服务器
|
||||
git remote rm origin //删除所有远程服务器
|
||||
git remote add origin url //添加新的远程服务器
|
||||
```
|
||||
|
||||
16
gpstotrack.m
Normal file
16
gpstotrack.m
Normal file
@ -0,0 +1,16 @@
|
||||
clc;%清理命令行窗口
|
||||
clear all;%清理工作区
|
||||
%读取excel数据,同目录下
|
||||
tx=xlsread('C:\Users\yewuya\Desktop\航点gps\110606.xlsx');%此时.m文件和Excel文件都在工作路径,即同一目录,如果不是,在Excel名称前加上路径
|
||||
|
||||
desire_alt = tx(:,1);
|
||||
desire_lat = tx(:,2);
|
||||
desire_lng = tx(:,3);
|
||||
|
||||
current_alt = tx(:,4);
|
||||
current_lat = tx(:,5);
|
||||
current_lng = tx(:,6);
|
||||
|
||||
plot3(current_lat,current_lng,current_alt,'k','linewidth',1,'markersize',10);
|
||||
hold on
|
||||
plot3(desire_lat,desire_lng,desire_alt,'r','linewidth',1,'markersize',10);
|
||||
5
云计算学习知识.md
Normal file
5
云计算学习知识.md
Normal file
@ -0,0 +1,5 @@
|
||||
# 云计算学习知识
|
||||
|
||||
C/C++/Java/C#/Python/Go/PHP等编程语言
|
||||
|
||||
虚拟化、计算、网络、存储、安全、监控运维、操作系统、数据库、系统自动化、分布式架构、开源等;
|
||||
50
校招职位.md
Normal file
50
校招职位.md
Normal file
@ -0,0 +1,50 @@
|
||||
# 校招职位
|
||||
|
||||
有赞 10.30截止
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
云从
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
依图 10.31截止
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
新华三
|
||||
|
||||

|
||||
|
||||
恒生电子
|
||||
|
||||

|
||||
|
||||
数梦工场(宣讲会)简历投邮箱
|
||||
|
||||
同盾科技(校招没有)
|
||||
|
||||
涂鸦智能
|
||||
|
||||
图森未来(北京上海)
|
||||
|
||||
商汤科技
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
地平线机器人(上海南京)嵌入式
|
||||
|
||||
寒武纪(上海西安)人工智能
|
||||
|
||||
陆金所(上海)前后端 人工智能
|
||||
|
||||
远景能源(上海)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user