Jimmy W


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
13,526
of 300,763

REPUTATION
3

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
2

RANK
 of 21,082

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,923

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 3

View badges

Feeds

View by

Question


while loop doesn't produce correct result
sum = 0; n = 0; C = (2/(pi*(1-4*n^2)))^2; while sum < (1/2)*0.99 n = n+1; sum = sum + C; end disp...

8 years ago | 1 answer | 0

1

answer

Question


plotting sin wave signal
Hi, I have the following signal, f(t) = |sin(t)|, -(pi/2)<= t <= (pi/2), what is the code to plot it for three whole periods? Th...

8 years ago | 1 answer | 0

1

answer

Question


Integer division problem (gear ratio related)
Let's say A/B = 2.417. A and B both must be integers. I need to write a script to list some possible combos of A and B. Also 2.4...

9 years ago | 2 answers | 0

2

answers

Question


How to plot separate graphs?
I have plotted a few graphs in different sections of my scripts, however when I run the m-file it will only show the last graph,...

9 years ago | 1 answer | 2

1

answer

Question


Finite difference problem with matlab 2014
Let's say I have a problem like this: det_t = 0.02, t = [0 : det_t : 1], z(t+det_t) = 3 * z(t) + 2* z(t-det_t), where z(t-det_t)...

9 years ago | 1 answer | 0

1

answer

Question


How to solve for constants of a function given the initial conditions?
Let's say for example I have a system of equations: y(t)=A*t^2+B*t and y'(t) = 2*A*t+B. Now I have initial conditions of y(0) =...

9 years ago | 1 answer | 0

1

answer