Use this tag for questions about using computers in science. Many of these questions also fit on scicomp.stackexchange.com.

learn more… | top users | synonyms

0
votes
2answers
52 views

How to represent scientific notation in C

How do I represent extremely large or small numbers in C with a certain amount of significant figures. For example, if I want to do calculations on 1.54334E-34, how could I do this. Also, is this ...
-1
votes
0answers
21 views

stuck trying to understand a pruning heuristic for peg solitaire in a Scientific Article [closed]

I'm trying to understand a heuristic for prune the search space of a backtrack's algorithm described by kiyomi and matsui in Integer Programming Based Algorithms for Peg Solitaire Problems, this ...
1
vote
1answer
36 views

Large Attributes in HDF5 (C++)

I am using the HDF5 C++ API. I have a program that very occasionally has to write attributes larger than 64 kB. It throws an H5::AttributeIException when trying to write such a large attribute. The ...
3
votes
2answers
53 views

Use if clause in arrayfun in Octave/Matlab

Is it possible to use "if" in arrayfun like the following in Octave? a = [ 1 2; 3 4]; arrayfun(@(x) if x>=2 1 else 0 end, a) And Octave complains: >>> arrayfun(@(x) if x>=2 1 else ...
0
votes
1answer
44 views

What is (if any) the standard approach for designing out of core/ external memory algorithms?

I am looking for rules of thumb for designing algorithms where the data is accessed slowly due to limitations of disk speed, pci speed(gpgpu) or other bottleneck. Also, how does one manage gpgpu ...
1
vote
1answer
97 views

Plotting log-binned network degree distributions

I have often encountered and made long-tailed degree distributions/histograms from complex networks like the figures below. They make the heavy end of these tails, well, very heavy and crowded from ...
0
votes
1answer
65 views

Numerical integration of a discontinuous function in multiple dimensions

I have a function f(x) = 1/(x + a+ b*I*sign(x)) and I want to calculate the integral of dx dy dz f(x) f(y) f(z) f(x+y+z) f(x-y - z) over the entire R^3 (b>0 and a,- b are of order unity). This is ...
0
votes
0answers
32 views

Matrix multiplication routine on different platforms [closed]

Generally, would implementing a matrix (of floats) multiplication routine on different platforms always produce the same result ? Why? or Why not. Let the implementation be the same; would the ...
0
votes
0answers
119 views

Implementing Explicit formulation of 1D wave equation in Matlab [closed]

so the theory is straight forward. we have: d^2U/dt^2=c^2 *d^2U/dx^2 discretizing it gives: {U(i+1,j)- 2U(i,j) + U(i-1,j)}/dt^2 = c^2 *{U(i,j+1)-2U(i,j) + U(i,j-1)}/(dx)^2 where U(i,j) is ...
0
votes
1answer
59 views

FFT unable to recombine results? [closed]

so basically I have a function that calculates the complex discrete Fourier series of a given vector of size N. (So I have been provided with the vector y and I have to find x) The code uses ...
0
votes
0answers
60 views

What is the difference between EPD and Anaconda and where are they best used? [duplicate]

I am doing quite a bit of work with big data sets (exploratory/descriptive statistics, a bit of modelling/ML, NLP, etc.). I am deciding between purchasing the premium version of EPD and Anaconda, and ...
1
vote
3answers
213 views

Fast, small, and repetitive matrix multiplication in Python

I'm looking for a way to very quickly multiply together many 4x4 matrices using Python/Cython/Numpy, can anyone give any suggestions? To show my current attempt, I have an algorithm which needs to ...
1
vote
2answers
106 views

Why are the elements of the matrix and vector types in the F# Powerpack mutable?

F# is often promoted as a functional language where data is immutable by default, however the elements of the matrix and vector types in the F# Powerpack are mutable. Why is this? Furthermore, for ...
1
vote
3answers
104 views

Java library that has matlab equivalent functions

I am looking for a Java library that closely mirrors matlab's Matrix functions and possibly other functions in the areas of polynomial interpolation, etc. If such a library does not exist I was ...
-2
votes
2answers
75 views

Solve a Matrix for unknows in Python / Numpy / Scipy [closed]

I need to solve this system of matrices for the unkowns u4,f1,f2,f3,f5 and f6 for a particular FEA problem. I have generated the matrix containing the numbers with my input and need to solve it for ...
3
votes
0answers
45 views

PANEL structure within HPL (high performance Linpack) code

Recently, I am delving into HPL code and try to understand the underlying implementation mechanism of HPL. (http://www.netlib.org/benchmark/hpl/) Right now, I am a little confused with some ...
4
votes
2answers
72 views

Are there any downsides to using virtualenv for scientific python and machine learning?

I have received several recommendations to use virtualenv to clean up my python modules. I am concerned because it seems too good to be true. Has anyone found downside related to performance or ...
3
votes
1answer
115 views

Optimizing a 3D-Loop (C++)

I'm working on a multigrid solver in C++ and right now I'm trying to improve the serial performance. Most time-consuming part in this is the smoother, which in my case is a successive over-relaxation ...
0
votes
1answer
74 views

Writing calculation results back into its array?

Something of a follow-up question to my last one about writing efficient python programs. I have been playing with writing my own physics simulations, and want to get away from using a billion classes ...
2
votes
2answers
60 views

Trying to extend my result to have 8 digits after a decimal

I'm trying to extend the result on my program to 8 digits after the decimal point. I went over this page (http://www.cplusplus.com/reference/ios/ios_base/precision/) but I'm not having any luck ...
4
votes
4answers
464 views

Writing a faster Python physics simulator

I have been playing around with writing my own physics engine in Python as an exercise in physics and programming. I started out by following the tutorial located here. That went well, but then I ...
0
votes
0answers
31 views

How to determine size (in bytes) *in memory* of a PyTables array?

I previously asked about the overall size of a PyTables array. Now I'm looking to find out how much space in memory a PyTables array occupies at a given moment. Theoretically much of the array is ...
0
votes
3answers
38 views

How to determine size (in bytes) of a PyTables array?

How can I determine the size (in bytes) of a PyTables Array?
1
vote
2answers
87 views

converting numbers to metric unit in python

when doing this in python 100*0.000001 I got 9.999999999999999e-05 What I need to do to get 1e-05?
2
votes
1answer
148 views

Performance comparison of FPU with software emulation

While I know (so I have been told) that Floating-point coprocessors work faster than any software implementation of floating-point arithmetic, I totally lack the gut feeling how large this difference ...
4
votes
3answers
367 views

Plot Mandelbrot with matplotlib / pyplot / numpy / python

I am new to python and learning by following Python "Scientific lecture notes Release 2013.1" tutorial. Please help me solve this Mandelbrot problem in the srcreenshot below (Pg 71). Please provide ...
0
votes
2answers
157 views

What are the best libraries or software to numerically solve a nonlinear system? [closed]

I have a system of 8 polynomial equations of 7th grade eight in 8 variables with constraints (minimum and maximum acceptable values​​). In your experience and knowledge of what is the most efficient ...
0
votes
2answers
159 views

Triple Integration with Python / Numpy / Scipy

I am new to python and learning by following Python "Scientific lecture notes Release 2013.1" tutorial. Please help me solve this triple intergration problem in the srcreenshot below (Pg 70). I have ...
0
votes
0answers
20 views

Entity Resolution

I ask this question to people in the field of scientific research: I want to know the difference between the two terms "Entity Resolution" and'' Entity matching "in the context of databases. or if it ...
3
votes
1answer
99 views

Speed up NumPy's where function

I am trying to extract the indices of all values of a 1D array of numbers that exceed some threshold. The array is on the order of 1e9 long. My approach is the following in NumPy: idxs = ...
4
votes
1answer
311 views

Most efficient way to filter a long time series Python

I have a large time series, say 1e10, that results from recording neural activity, i.e. voltages. Before doing further analysis I want to band pass filter that data between 300 Hz and 7000 Hz. Below, ...
0
votes
0answers
32 views

From MS in Math to software engineering, experience with webapps [closed]

First, I'll describe my situation. I graduated with a BS in Math a few years ago. I worked for 4 years for a web app company (mostly PHP4, Postgres, PrototypeJS, HTML4) where I wrote our in-house ...
1
vote
1answer
117 views

Scientific application suddenly slowed down on Linux [closed]

I do scientific computing using c++ with a couple of basic fortran routines in a Xubuntu 12.10 distribution. Things have been running well for years. All of the sudden today when messing with my ...
3
votes
1answer
339 views

Correct way to use scipy.signal.spectral.lombscargle

I'm refering to the following post : Using scipy.signal.spectral.lombscargle for period discovery I realize the answer given correct for certain case. Frequency for sin(x), which is 1/(2* pi) # ...
10
votes
2answers
262 views

How to organize a set of scientific experiments using Git

I'm running experiments on a model, with a workflow like this: I work in a model (a software in Python) I change some parameters and run an experiment Then, I will store the results of the ...
1
vote
1answer
105 views

HDF5 Storage Overhead

I'm writing a large number of small datasets to an HDF5 file, and the resulting filesize is about 10x what I would expect from a naive tabulation of the data I'm putting in. My data is organized ...
2
votes
3answers
145 views

Cross-platform deployment and easy installation [closed]

EDIT One option I contemplated but don't know enough about is to e.g. for windows write a batch script to: Search for a Python installation, download one and install if not present Then install the ...
0
votes
0answers
90 views

Efficiently Interpolating intensity from 2D image/array in Java

I need to write a class which will take a 2D array (from a .pgm file) of pixel intensity values at a specified resolution (eg. pixel size = 5 um) and search many times (10^5 - 10^7) for the intensity ...
4
votes
3answers
505 views

Integrating a multidimensional integral in scipy

Motivation: I have a multidimensional integral, which for completeness I have reproduced below. It comes from the computation of the second virial coefficient when there is significant anisotropy: ...
0
votes
1answer
153 views

Curiously Recurring Template Pattern times two

I have general design question. I am trying to implement something like this: ------------ |Base Class| ------------ | ...
1
vote
1answer
53 views

How to decide hypothesis function for NN having non-linear training set?

We have 4 numeric inputs which are non-linearly related to each other. Our objective is to predict the output by using backward propagation model. The scenario we are imaging is as follows , As per ...
0
votes
0answers
120 views

code with FFW3 compiled with ifort 11 randomly halt

I have got a time marching FORTRAN code compiled with ifort 11 on a linux machine (centos 5), which links to FFTW3. The code randomly halts after a few thousand steps. The flags I've used are: -O2 ...
0
votes
1answer
629 views

Plot K-Means clusters of multi-dimensional vectors

I have 100 x 13 vectors as input for K-Means Clustering which I have implemented in C#. I want to plot the result of my Clustering i.e. 13-Dimensional data points I have seen example of 2D and 3D ...
3
votes
1answer
176 views

multinomial pmf in python scipy/numpy

Is there a built-in function in scipy/numpy for getting the PMF of a Multinomial? I'm not sure if binom generalizes in the correct way, e.g. # Attempt to define multinomial with n = 10, p = [0.1, ...
2
votes
0answers
62 views

Python variable names in Greek alphabet [duplicate]

Possible Duplicate: Unicode identifiers in Python? Just checking, but I'm assuming there is no way whatsoever I can write a Python program with lines such as: σ = 5.67e-8 j = σ * T**4 ...
0
votes
1answer
131 views

What is the best software stack for a small scientific computing cluster

I work in a research group doing a lot of Machine Learning and Computational Biology. We currently have a cluster, but it is poorly maintained, suffers from low I/O throughput, and most critically ...
-2
votes
2answers
169 views

VHDL for scientific computing [closed]

I was wondering if folks use VHDL/FPGAs in scientific computing. An example scenario that I was thinking off was say: Construct an arbitrary precision floating point adder Configure an FPGA board ...
2
votes
1answer
663 views

Fortran Error Meanings

I have been following books and PDFs on writing in FORTRAN to write an integration program. I compile the code with gfortran and get several copies of the following errors. 1)Unexpected data ...
2
votes
1answer
339 views

Using scipy.signal.spectral.lombscargle for period discovery

The new Scipy v0.11 offers a package for spectral analysis. Unfortunately the documentation is sparse and there aren't many available examples. As a baby example, I'm trying to do period discovery of ...
0
votes
0answers
240 views

create netCDF files with irregular gridpoints (ArcGIS readable)

I am able to create netCDF files, using python and the Dataset class from netCDF4 module. My files have mostly 3D variables (e.g. time, latitude and longitude). However, I need to ensure that the ...

1 2 3 4 5