photo

Aaron Millan


Last seen: 4年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

7 質問
0 回答

ランク
192,903
of 300,908

評判
0

コントリビューション
7 質問
0 回答

回答採用率
42.86%

獲得投票数
0

ランク
 of 21,110

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,639

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答

質問


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年弱 前 | 0 件の回答 | 0

0

回答

質問


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年弱 前 | 1 件の回答 | 0

1

回答