science
Here are 1,599 public repositories matching this topic...
-
Updated
Aug 11, 2020
-
Updated
Aug 24, 2020 - Jupyter Notebook
Consider the following system and its solution:
from sympy import *
from sympy.abc import j,f
# augmented matrix
a=Matrix([
[1, 1, 1, 1, 1, 1, 1, 1, 1],
[0, -1, 0, -1, 0, -1, 0, -1, -j],
[0, 0, 0, 0, 1, 1, 1, 1, f]
])
x=Matrix(list(linsolve(a))[0])
# check if x is a solution
a[:,:-1]*x-a[:,-1] # should be all 0 but the second term is 'tau0-tau1'
Do you have an
-
Updated
May 30, 2020
-
Updated
Dec 21, 2019
astropy/astropy#9468 highlighted that there are code snippets in docstrings that are not actually picked up during doctesting. I strongly feel that shouldn't be the case, we should skip any such testing in very rare occasions.
I tag this as a coordinates issue, but they may be other sub packages affected by the same problem.
-
Updated
Sep 9, 2020 - JavaScript
I am suggesting adding up another feature which will be either a standalone or a part of an advanced search. I suggest adding up a tool which will permit to select a given area. A user can predefine searchable objects by their type (like dwarfs, blue giants and the like) and magnitude (all objects of the apparent/absolute magnitude, for example, 13). When search is done, the search box would list
-
Updated
Sep 3, 2020 - Python
Version of Singularity:
3.0.3
Expected behavior
Some progress or update information during the creation of the SIF file.
Actual behavior
During "Creating SIF file..." step, the console does not produce any visible output for the user - but does create the resulting file eventually.
Steps to reproduce behavior
I was executing a few “larger” builds through the bui
Don't bunde the data
-
Updated
Jan 17, 2020
-
Updated
Sep 10, 2020 - PHP
-
Updated
Aug 29, 2020 - Python
-
Updated
Sep 2, 2020 - Python
-
Updated
Sep 9, 2020 - C++
-
Updated
Sep 10, 2020 - Rust
I'll show a brief program below. The program demonstrates unclear/consistent behavior of the size, width and height arguments when creating a new Rect. Using the argparse module, the user can easily create a rectangle using the size argument. When the program isn't given any argument, the width and height argument of Rect() are used and then the the proper size is used for the rectangle, if the
-
Updated
Sep 10, 2020 - Python
We should be able to calculate what compounds the player cell consumes in a given amount of time, and then when the player respawns, the resource given should be taken into account. Ex: The cell uses 2 glucose, 3 iron, and 1 hydrogen in x amount of time. When the player respawns, they should have 1/2 of the compounds they were given be iron, 1/3 glucose, and 1/6 hydrogen.
Ingame screencapture
We either do this all ourselves or do some reordering somewhere, I forget. But we should use the LaTeXML option now! brucemiller/LaTeXML#1044
-
Updated
Aug 26, 2020 - Python
Improve this page
Add a description, image, and links to the science topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the science topic, visit your repo's landing page and select "manage topics."
Currently, the docs for the Printf standardlib simply mentions it uses "C
printfstyle format specification", but does not specify what that is, nor provides a link to the C printf format.It would be nice to explain it in the docs.