Skip to content
#

scientific

Here are 187 public repositories matching this topic...

julia
CameronBieganek
CameronBieganek commented Feb 21, 2020

Do we expect the following syntax to work?

julia> [Int, Float64, String, Bool] .<: Union{Int, String}
ERROR: syntax: space not allowed after ":" used for quoting

It works if you call <: as a broadcasted function:

julia> (<:).([Int, Float64, String, Bool], Union{Int, String})
4-element BitArray{1}:
 1
 0
 1
 0

Version info:

Julia Versio
colleenjg
colleenjg commented Mar 26, 2020

Describe the use case that is addressed by this feature.
Unlike roi_masks.calculate_traces(), demixer.demix_time_dep_masks() loads full image stack into memory to reshape it. Stacks can easily be > 50 GB, causing an out of memory error on some machines. This is not necessary, as the frames are then used one by one.

Describe the solution you'd like
Load by blocks of frames instead

bmaclach
bmaclach commented Feb 20, 2020

The website shows a table of the design decisions made for each case study, as of #2015. For now, it is just hardcoded into code/website/index.html. We should instead build this table automatically so it is more maintainable.

(@smiths, I'm assigning this to you just so that someone has ownership of it. You can reassign as needed).

spirit
poobarb
poobarb commented Aug 16, 2018

The FCM documentation states that config files (such as keywords.cfg) are located from the following list of paths:

  • [$HOME/.fcm in some cases]
  • $FCM/etc/fcm/<configfile>
  • $HOME/.metomi/fcm/<configfile>

However, the Debian package for FCM (cf. here) installs the confing files to /etc/fcm (a choice which is not unreasonable), whilst it in

ri0t
ri0t commented Jul 19, 2018

Add a state-contextual help or something to get detailed help.
This should be a link to documentation relevant to what the user is currently doing.

The link should be accessible via a small ? icon somewhere central (not the help menu, but maybe there as well ;) and keyboard shortcut (ctrl-f1)

The documentation (stubs) might be autogenerated by inspecting module's frontend bits for easy deve

dkriegner
dkriegner commented Oct 24, 2019

The setup.py test command is being deprecated and should be replaced by a more universial way to run the tests. Also the tests should be able to run before installation of the code. This means the imported xrayutilities version should not be the systems one but the one built by setup.py.

All this should be a

Improve this page

Add a description, image, and links to the scientific topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the scientific topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.