science
Here are 2,241 public repositories matching this topic...
-
Updated
Aug 8, 2022
-
Updated
Jul 10, 2022 - Jupyter Notebook
I have two expressions, one adding a symbol to a matrix, the other adding a matrix to a symbol
import sympy
A = sympy.MatrixSymbol('A', 1, 1)
sy_b = sympy.Symbol('b')
sym_plus_mat = sympy.MatAdd(sy_b, A, evaluate=False)
mat_plus_sym = sympy.MatAdd(A, sy_b, evaluate=False)I can print both of these expressions without problem:
print(sym_plus_mat)
print-
Updated
May 30, 2020
Discussed in Stellarium/stellarium#2530
Originally posted by onlinebacon July 23, 2022
I'm doing some celestial navigation software and was using the help of the nautical almanac and stellarium to get star information. And couldn't find Schedar on stellarium, then I figured it was being spelled without the "c
At the moment, when reading a FITS file with BUNIT set to adu with CCDData.read, one gets the following info message:
INFO:astropy:using the unit adu passed to the FITS reader instead of the unit adu in the FITS file.
it might make sense to avoid emitting this message if the units match? (cc @mwcraig)
-
Updated
Dec 21, 2019
-
Updated
Aug 1, 2022 - JavaScript
-
Updated
Jun 13, 2022 - 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
What is the feature ?
I'm trying out this library for the first time and there's some places where it would be delightful to have shorthand functions:
- Shorthand functions for Pos:
Pos::top_right,Pos::bottom_right,Pos::bottom_centeretc.. - Short way to set colors for components. Currently, lots of boilerplate is required for e.g. white-on-black plotos
- a cool start would b
-
Updated
Oct 27, 2021
-
Updated
Aug 7, 2022 - Python
import pint
ureg = pint.UnitRegistry()
-140 * ureg.degrees == 220 * ureg.degreesreturn False. Is it possible for it to return True instead?
-
Updated
Aug 10, 2022 - PHP
-
Updated
Aug 10, 2022 - Standard ML
Don't bunde the data
-
Updated
Jul 7, 2022 - Common Workflow Language
Follow redirects
If you paste in a t.co link, or whatever, it should follow it.
-
Updated
Aug 9, 2022
-
Updated
Aug 10, 2022 - Python
-
Updated
Jul 7, 2022 - Python
-
Updated
Aug 10, 2022 - 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."

This subject was initially discussed in https://discourse.julialang.org/t/efficient-way-to-split-string-at-specific-index/83115/17 regarding a way to split a string into equal-length substrings.
The solutions discussed involved (for a string composed of 10 blocks of 8 strings)
split8(str::String) = [str[i+1:8] for i in 0:8:length(str)]