![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15773293_1569849723281.jpg)
Thomas
self employed
Followers: 0 Following: 0
Estadística
8 Preguntas
3 Respuestas
19 Archivos
CLASIFICACIÓN
6.225
of 297.016
REPUTACIÓN
8
CONTRIBUCIONES
8 Preguntas
3 Respuestas
ACEPTACIÓN DE RESPUESTAS
62.5%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
9.064 of 20.419
REPUTACIÓN
81
EVALUACIÓN MEDIA
3.70
CONTRIBUCIONES
19 Archivos
DESCARGAS
31
ALL TIME DESCARGAS
640
CLASIFICACIÓN
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Enviada
A simple quaternion class
class with some basic operations on quaternions
más de 1 año hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/72d4d4af-4898-4d0f-aa3b-e93bf785556f/fca3f551-16da-4902-93ba-cb94b7959b3f/images/1696200564.png)
Enviada
discrete logarithm
compute the discrete logarithm using Shank's algorithm
más de 1 año hace | 1 descarga |
How to create an array of matrices?
function aM = arrayofmatrices(A,B,C) aM(:,:,1) = A; aM(:,:,2) = B; aM(:,:,3) = C; end This only works when A, B and C hav...
más de 1 año hace | 0
Pregunta
I try to find a general vector base for all magic squares of dimension n . Why does this program work for n = 3, but not vor n > 3?
The program below is supposed to find a general vector base for all magic squares of dimension n . Why does this program work fo...
más de 1 año hace | 1 respuesta | 0
1
respuestaHow can i check if a matrix is magic square or not?
try: function ismagic = ismagic(M) %ISMAGIC checks if a matrix M is a magic square or not if size(M,1) ~= size(M,2) is...
más de 1 año hace | 0
How can i create array of symbolic expressions?
does this help? function array_of_symbolicExpressions(mx) syms t y(t); y(t) = t^3+t^2; % just an example d = diff(y); ...
más de 1 año hace | 0
Enviada
Simple Chess game
I tried to keep it "minimalistic", so strength isn't great.
más de 2 años hace | 4 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/528fbeb0-c2c2-4b0f-a8a3-b440b21f2e36/6ec60ce7-6278-445d-9f00-e0d71db652de/images/1664229303.jpg)
Enviada
Two versions of Pollard's rho factorization algorithm
one version with Brent's style cycle detection, one without but using vectors and matrices
más de 2 años hace | 2 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/75b9eb3a-9d64-4295-bd9f-145cddf85490/5e4a4643-c23d-478e-b90a-7c8481dffe5a/images/1655482229.jpg)
Enviada
sieve of Erathostenes
a simple number sieve, which could (in theory) run forever, because it does not require an interval to be sieved.
más de 2 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/050a0931-70cc-49fb-9760-a6d464ac0835/f6d5124c-0fa8-49f2-9221-dea92d9d89e6/images/1655480777.jpg)
Pregunta
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...
más de 2 años hace | 2 respuestas | 2
2
respuestasEnviada
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
alrededor de 3 años hace | 2 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/6dd96c37-83a9-4965-9f34-ca045dd7d204/96b541cd-15fd-4b88-ba96-7175580ab197/images/1607793900.jpg)
Pregunta
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 ...
más de 3 años hace | 1 respuesta | 0
1
respuestaEnviada
two ways to compute Riemanns prime counting function
one version which works (J2) and one which does not work (J1).
casi 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/dacae92c-9177-4443-8058-21d18cacdb2f/24e25ead-a9e7-4f6c-be6d-8e66f7c07ff4/images/1617042504.jpg)
Pregunta
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...
casi 4 años hace | 0 respuestas | 4
0
respuestasEnviada
convert integer to binary or binary to integer
convert a column vetor of integers to a column vector of binaries or vice versa
alrededor de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/313ebfe1-7f7a-475c-b07f-68827dd2c40f/c1340f11-3e7c-4b31-b757-6c25e9e0af2c/images/1610322406.jpg)
Enviada
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.
alrededor de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/cbea0dce-eed4-4c83-98ed-a34fb9970276/1291564c-54e4-44cc-a8b2-e15491e9c3e8/images/1606162117.jpg)
Pregunta
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...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaEnviada
Fast approximation of Pi
Approximate Pi with 16th order convergence
más de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/a35486df-ff98-4cd0-803d-194639916ef5/58035026-13d1-4794-9e21-c4400ae6a596/images/1604842788.png)
Enviada
Create and run Turing machines
Some tools and examples for creating and simulating Turing machines and macro-Turing machines.
más de 4 años hace | 2 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/09a08ad0-e82b-4f69-9b08-9a93aaae97d2/e88ab1ea-f866-41ac-aac2-2bdfe40b766f/images/1604607723.jpg)
Enviada
Computation of the rado function
More sophisticated check for endless loops, support for parallel execution and the use of macro-Turing-machines
más de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/7272bb33-3970-42c2-b3bf-3c1c2360aca2/f6735465-62ef-4b18-b861-477a67846e71/images/1595108120.jpg)
Enviada
uncover the call structure of a recursive function call
recurse(tree) helps to uncover the call structure of a recursive function call.
más de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/d168ebb4-d042-4dd4-9837-a1e481afdcf6/8440cf30-69df-4408-9027-94395814ac48/images/screenshot.jpg)
Enviada
GaussLegendre
quick approximation of pi using the Gauss-Legendre algorithm
más de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/f6df21f0-f4a8-4562-b582-141db7e3c592/426242b4-ecee-4994-a69a-f562dcd4f88c/images/screenshot.png)
Enviada
two versions of the Euler-phi function
two brief implementations of the Eulerphi function
más de 4 años hace | 1 descarga |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/721a3ba5-c9a9-4b05-8813-fe184bf6ddca/88b521a0-9375-4097-863c-dcc5d6496310/images/screenshot.jpg)
Pregunta
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...
casi 5 años hace | 1 respuesta | 0
1
respuestaEnviada
Computation of Rado-function
Recursive computation of the "uncomputable" Rado-function.
alrededor de 5 años hace | 1 descarga |
Enviada
Karatsuba algorithm for fast multiplication
Multiplication of "x" and "y" with Karatsuba method using base "base" x , y and base can be freely chosen
más de 5 años hace | 3 descargas |
Enviada
Shor Algorithm for prime factoring
A Version of the Shor-Algorithm for prime Factoring. Please feel free to comment on it or recommend improvements.
más de 5 años hace | 5 descargas |
Pregunta
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...
más de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
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...
más de 5 años hace | 4 respuestas | 2