Jesse Crotts
Followers: 0 Following: 0
I study Mechanical Engineering and Applied Mathematics. One of my biggest interests is in Number Theory.
Statistik
RANG
274.372
of 295.486
REPUTATION
0
ANTWORTZUSTIMMUNG
61.54%
ERHALTENE STIMMEN
0
RANG
13.636 of 20.236
REPUTATION
19
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
4 Dateien
DOWNLOADS
5
ALL TIME DOWNLOADS
196
RANG
of 153.950
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
How do you know how many inputs your lsim function has?
I know this seems like a dumb question because you should know by your system size, but I can't seem seem to get my lsim functio...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What is Input for lsim?
When using the lsim function, the second variable to input is the "input" to the system. This seems very straightforward for a s...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Proper way to use exist function.
I am using the ode23 function to call another function. The problem is that I need to change the time value each time the functi...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to solve system of 2nd order differential equations using ode23 or ode45.
I'm trying to use ode23 or ode45 to solve a system of 2nd order differential equations that look like this: [M]*xdotdot+[K]*x=[...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to assign a vector to multiple values.
I have these lines of code: function f = trick(t,x,M,K) f = zeros(4,1); f(1) = x(2); f(2) = x(3); Minvneg = -inv(M); [f(3)...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to simulate using ode23 with multidimentional second order differential equations
!!!At the very bottom, there is a much simpler version of this question!!! I am trying to model a beam using FEM in Matlab. I u...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenI have graduated and am in graduate school. My license needs to be renewed. How do I do that?
I guess I bought the perpetual one. However, I bought a new computer so I need to download MatLab on it. How do I go about doing...
mehr als 6 Jahre vor | 0
| akzeptiert
Frage
I have graduated and am in graduate school. My license needs to be renewed. How do I do that?
How do I renew my student license?
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What does the Matlab student version have that the Matlab home version does not?
My MatLab student version will run out within the next year. I'm just wondering if I will have the same capabilities with the ho...
etwa 7 Jahre vor | 1 Antwort | 0
1
AntwortGesendet
Chaos_game_Numberphile
Fractal editor, inspired by Numberphile
mehr als 7 Jahre vor | 1 Download |
Frage
Whats wrong with my code?
All I wanna do is plot a user input function. What's wrong with this? I'm new to function handles. So any extra tips would be gr...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortGesendet
Table Generator
This shows one of the most efficient ways to produce an function driven table.
mehr als 7 Jahre vor | 2 Downloads |
Frage
How do I make this 2 dimensional vector follow a formula
I want elements in a 2 dimensional vector two to follow a formula given its location (x,y) in the vector. For example, I want th...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Does anyone recommend a solid state hard drive that will enhance MatLab's speed.
I use my computer mainly for Matlab, CAD, and gaming. Does anyone have a recommendation for a SSD that will enhance these 3 uses...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I've been using a for loop with with mod functions to sieve number from the Natural numbers. Is there a more efficient sieve technique than this.
My Code looks something like this P = primes(100000); N = 1999900000:1:2000000000; for i = 1:numel(P); N(mod(N...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I wrote a code to produce twin primes, however it is pretty strenuous for my computer and I need some high numbers to check a conjecture. Is there a better way to get twin primes. Note: these twin primes are represented by 6m's where 6m+-1 are prime.
n = 1:120000; m61 = n*6-1; Twins = []; for i=1:numel(m61); z = isprime(m61(i)); y = isprime(m61(i)+2); if ...
etwa 8 Jahre vor | 2 Antworten | 0