ICode9

精准搜索请尝试: 精确搜索
  • python使用skyfiled进行轨道计算2022-01-08 22:01:04

    python 使用skyfield进行轨道计算 /*====安装 ======*/ pip install skyfield 依赖numpy,scipy, 建议安装anaconda /*====使用======*/ 计算火星在天空中的位置: from skyfield.api import load # Create a timescale and ask the current time. ts = load.timescale() t = ts.now

  • CS61B 学习笔记 proj0:NBody Simulation2021-10-20 21:00:07

    proj0介绍 Planet类构造器 public class Planet { public double xxPos; public double yyPos; public double xxVel; public double yyVel; public double mass; public String imgFileName; public Planet(double xP, double yP, double xV, doub

  • 【golang】代码学习2021-01-07 21:05:14

    package main import ( "fmt" "sort" ) // A couple of type definitions to make the units clear. type earthMass float64 type au float64 // A Planet defines the properties of a solar system object. type Planet struct { name

  • python之有关循环的那些事儿2020-05-03 10:41:36

    Python for和while循环语句的基础知识!小白请看过来,纯干货!! Reference: Kaggle Notebook Loops! Click me! 1. 循环(Loops) 循环在计算机语言中是指重复运行某些代码。 看看例子就懂啦~ planets = ['Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn',

  • 机器学习-Python 012019-12-11 20:57:27

    机器学习中最常用最流行的语言工具现阶段应该是Python, 这篇文章主要介绍一些常用的Python语法知识。本篇博文适合那些有其他语言基础的程序员们,如果一点基础都没有,我建议先跳过。博主以前是做移动端开发的,所以本篇文章主要是为那些准备知识提升或者转行的程序员们准备的,可以让你

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有