photo

Aaron Millan


Last seen: 4 years ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB Answers

7 Questions
0 Answers

RANK
137,150
of 300,765

REPUTATION
0

CONTRIBUTIONS
7 Questions
0 Answers

ANSWER ACCEPTANCE
42.86%

VOTES RECEIVED
0

RANK
 of 21,084

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,941

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


How to store values in memory for MATLAB, List of Primes
I have written a code for extracting prime numbers, from 1 to sqrt(n) (included below). Now, I'm being asked to do something I d...

4 years ago | 0 answers | 0

0

answers

Question


Matlab code for finding prime numbers
I wrote a code for the sieve of erasthosenes (a way to find and arrange all the prime numbers before a user-defined value, "n", ...

4 years ago | 0 answers | 0

0

answers

Question


Matlab code for Eratosthenes
I wrote a code for the sieve of Eratosthenes, but the grader was not satisfied with my code. I'm not sure what I did wrong to hi...

4 years ago | 1 answer | 0

1

answer

Question


Sieve of prime numbers MATLAB
function p = prime_seive(n) p = [0 2:n]; for k = 2:sqrt(n) if p(k) p(k^2:k:n) = 0; end end p = p(p ~= 0);...

4 years ago | 0 answers | 0

0

answers

Question


DIfferential equations and Matlab
This is a long one; sorry! I have written an Euler's code which works. Now I just have to use it to solve an equation. Here ar...

5 years ago | 1 answer | 0

1

answer

Question


Improved Euler's method
Hello! I am working on a code I tried to run last year for Euler's improved method, which uses the height of a trapezoid to find...

5 years ago | 0 answers | 0

0

answers

Question


Matlab Bisection Algorithm code
% I'm trying to create a proper bisection code, and would like some advice on whether this code will... %run properly. I am not...

5 years ago | 1 answer | 0

1

answer