Statistics
RANK
5,548
of 275,841
REPUTATION
7
CONTRIBUTIONS
7 Questions
0 Answers
ANSWER ACCEPTANCE
57.14%
VOTES RECEIVED
7
RANK
10,102 of 18,576
REPUTATION
52
AVERAGE RATING
3.70
CONTRIBUTIONS
17 Files
DOWNLOADS
27
ALL TIME DOWNLOADS
345
RANK
of 125,631
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
Simple Chess game
I tried to keep it "minimalistic", so strength isn't great.
6 months ago | 3 downloads |

Submitted
Two versions of Pollard's rho factorization algorithm
one version with Brent's style cycle detection, one without but using vectors and matrices
9 months ago | 2 downloads |

Submitted
sieve of Erathostenes
a simple number sieve, which could (in theory) run forever, because it does not require an interval to be sieved.
9 months ago | 0 downloads |

Question
why is this Matlab Code faster than the C++ code below? I want to understand what Matlab internally does better and faster than C++
why is this Matlab Code function primes = sieve_era2(N) % sieve of Erathostenes without upper bound of search space (could th...
9 months ago | 2 answers | 2
2
answersSubmitted
find zeros of the Riemann zeta function
This function finds zeros of the Riemann zeta function on the critical line 0.5 + i*t in an interval von <= t <= bis
1 year ago | 2 downloads |

Question
Approximation of pi is "too precise" .
The function below should approximate pi adding about 2 digits of precision for increasing n. Why is piApprox2(3) exactly = pi ...
2 years ago | 1 answer | 0
1
answerSubmitted
two ways to compute Riemanns prime counting function
one version which works (J2) and one which does not work (J1).
2 years ago | 1 download |

Question
Cannot start Matlab - getting error "std::exception: Loading D:\Program Files\MATLAB\R2019b\bin\win64\matlab_startup_plugins\Imgrimpl\lib
When I start Matlab from the Desktop Icon or from the task bar, I get this error: "std::exception: Loading D:\Program Files\M...
2 years ago | 0 answers | 3
0
answersSubmitted
convert integer to binary or binary to integer
convert a column vetor of integers to a column vector of binaries or vice versa
2 years ago | 3 downloads |

Submitted
zetaRS approximates Riemann's zeta(0.5 + i*t) for large t
Fast computation of Riemann's zeta function on the critical strip using the Riemann Siegel formula.
2 years ago | 2 downloads |

Question
using fzero with arrayfun searching for zeros inside an interval
I have a function f = @(x) -x.^2+4 with a zero at -2 and +2 using fzero(f, [-3, 1.9]) I get the (correct) zero inside the inte...
2 years ago | 1 answer | 0
1
answerSubmitted
Fast approximation of Pi
Approximate Pi with 16th order convergence
2 years ago | 1 download |

Submitted
Create and run Turing machines
Some tools and examples for creating and simulating Turing machines and macro-Turing machines.
2 years ago | 4 downloads |

Submitted
Computation of the rado function
More sophisticated check for endless loops, support for parallel execution and the use of macro-Turing-machines
2 years ago | 1 download |

Submitted
uncover the call structure of a recursive function call
recurse(tree) helps to uncover the call structure of a recursive function call.
2 years ago | 1 download |

Submitted
GaussLegendre
quick approximation of pi using the Gauss-Legendre algorithm
3 years ago | 1 download |

Submitted
two versions of the Euler-phi function
two brief implementations of the Eulerphi function
3 years ago | 1 download |

Question
Extract lines of a three dimensional matrix using an array of indices and NO for-loop
I have a three dimensional 10x5x2 array. Example: r(:,:,1) = [1 0 2 1 1; 2 0 3 1 1; 3 0 4 1 1; 4 0 1 1 -1; 5 0 -1 1 1; 1 1 3 1...
3 years ago | 1 answer | 0
1
answerSubmitted
Computation of Rado-function
Recursive computation of the "uncomputable" Rado-function.
3 years ago | 1 download |
Submitted
Karatsuba algorithm for fast multiplication
Multiplication of "x" and "y" with Karatsuba method using base "base" x , y and base can be freely chosen
3 years ago | 1 download |
Submitted
Shor Algorithm for prime factoring
A Version of the Shor-Algorithm for prime Factoring. Please feel free to comment on it or recommend improvements.
3 years ago | 2 downloads |
Question
trying to compute Riemann's prime counting function J(x)
I am trying to compute Riemann's prime counting function J(x): J(x) should approximate the numbers of primes <= x using thi...
3 years ago | 2 answers | 0
2
answersQuestion
isprime function seems to have poor performance
Why is MatLab's "isprime" function so much slower than Octave's "isprime" function? I am using MatLab's "isprime" function to c...
3 years ago | 4 answers | 2