
Jason Nicholson
John Deere
I am a Mechanical Engineer.
Professional Interests: Mechanical systems, data analysis, Simulink, hydraulics, Finite Element Analysis, Computational Fluid Dynamics, System Identification, Signal Processing, programming, machine learning, data analytics.
If you send me a message, I am likely to get back to you. :)
Statistics
순위
535
of 257,765
평판
116
참여
33 질문
38 답변
답변 채택
81.82%
획득한 표
34
순위
241
of 109,993
참여
1 문제
461 해답
점수
4,792
배지 수
12
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
해결됨
Parse string and identify specific string sequence in algebraic equation
Given a string S that defines an algebraic expression such as: S= 'X= A1 + A2*(Y1 + A3*Y3)*exp( A4*Y12 + Y1) ;' return a...
8달 전
질문
Epsilon Algorithm for Computing Padé Approximant
I am looking for a MATLAB implementation of the Epsilon Algorithm (theorem 1 from here). When I look at the Wikipedia page for P...
약 1년 전 | 답변 수: 0 | 0
0
답변제출됨
regularizeNd
Create a gridded lookup table of scattered data in n dimensions.
약 1년 전 | 다운로드 수: 7 |

해결됨
Hard limit function
Classify x data as if x>=0 then y=1 if x<0 then y=0 Example x = [ -2 -1 0 1 2] y = [ 0 0 1 1 1]
1년 이상 전
해결됨
Rosenbrock's Banana Function and its derivatives
Write a function to return the value of <http://en.wikipedia.org/wiki/Rosenbrock_function Rosenbrock's two-dimensional banana fu...
1년 이상 전
해결됨
Solve a System of Linear Equations
*Example*: If a system of linear equations in _x₁_ and _x₂_ is: 2 _x₁_ + _x₂_ = 2 _x₁...
1년 이상 전
해결됨
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
1년 이상 전
해결됨
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
1년 이상 전
해결됨
Matlab Basics II - squares
Write a function that takes matrix A, and squares each element in the matrix example: A = [1 2 3] output = [1 4 9]
1년 이상 전
해결됨
Given a matrix, return the last eigen value
Given a matrix, return the first eigen value For example: x = magic(5) 17 24 1 8 15 23 5 7 14 ...
1년 이상 전
해결됨
Building matrices
If you have matrix A, create matrix B using matrix A as an "element" A = [1 2 3 4; 5 6 7 8...
1년 이상 전
해결됨
Transpose
Write a MATLAB script in order to convert a random length row vector (v) into a column vector.
1년 이상 전
해결됨
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
1년 이상 전
해결됨
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
Find the remaining side of a triangle given the hypotenuse and a side. However, the normal functions and symbols are not allowe...
1년 이상 전
해결됨
Television Screen Dimensions
Given a width to height ratio of a TV screen given as _w_ and _h_ as well as the diagonal length of the television _l_, return t...
1년 이상 전
해결됨
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
If _p_ is the perimeter of a right angle triangle with integral length sides, { _a_, _b_, _c_ }, there are exactly three solutio...
1년 이상 전
해결됨
Approximation of Pi (vector inputs)
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given numbe...
1년 이상 전
How to estimate weights of the weighted mean?
Put all the each x and y pair on a row. Formulate the matrix A containing all the x1...x81 and x values. Put the y values in a c...
1년 이상 전 | 0
제출됨
Hamming Window Amplitude Correction
This simple script calculates the amplitude correction for a Hamming Window.
1년 이상 전 | 다운로드 수: 1 |

제출됨
FFT Notes
This shows how to process a signal with an odd and even length fft.
2년 이하 전 | 다운로드 수: 3 |

quadprog different output for R2020a and R2017a
There is an option called 'LinearSolver'. It can be dense or sparse. I set it to sparse and it converged quickly. This problem ...
약 2년 전 | 1
| 수락됨
Interpolation help please!
clc; clear; close all; t = [2 4 6 8 10]; x = [2 3 4 5 6]; y = [-1 2 1 3 -1]; F1 = griddedInterpolant(t,x); F2 = gridd...
약 2년 전 | 1
How can I capture a screenshot WITH the cursor displayed in Matlab?
Record the screen using Screen Recording in PowerPoint? A screen capture won't work but a screen recording will.
약 2년 전 | 0
Simulink Projects dependency analysis of mex file doesn't show all required C source files
File an enhancement request with Mathworks. However, I don't think they want to support the Dependency analysis of C/C++ files b...
약 2년 전 | 0
| 수락됨
How to Keep Nested For Loop Indexes From Equaling Each Other
Use the continue keyword. for i=1:50 for j=1:50 if j==i continue; % breaks the inner for loop at t...
약 2년 전 | 0
| 수락됨
질문
MATLAB Detection of Compiler
How does MATLAB detect the compiler in 2016b or newer? I have written a custom compiler configuration xml file. mex.getCompil...
3년 이상 전 | 답변 수: 1 | 0