
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
RANG
552
of 273.440
REPUTATION
118
BEITRÄGE
34 Fragen
38 Antworten
ANTWORTZUSTIMMUNG
79.41%
ERHALTENE STIMMEN
35
RANG
1.173 of 18.459
REPUTATION
1.521
DURCHSCHNITTLICHE BEWERTUNG
5.00
BEITRÄGE
12 Dateien
DOWNLOADS
115
ALL TIME DOWNLOADS
13102
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Content Feed
Frage
Timeseries, Timetable, timeseriescollection, Time Data Aggregation
When recording data in a test lab, the data channels are not always sampled at the same rate and some channels are not evenly s...
4 Monate vor | 0 Antworten | 0
0
AntwortenGelöst
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...
mehr als ein Jahr vor
Frage
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...
fast 2 Jahre vor | 0 Antworten | 0
0
AntwortenGesendet
regularizeNd
Create a gridded lookup table of scattered data in n dimensions.
fast 2 Jahre vor | 7 Downloads |

Gelöst
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]
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
Solve a System of Linear Equations
*Example*: If a system of linear equations in _x₁_ and _x₂_ is: 2 _x₁_ + _x₂_ = 2 _x₁...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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]
etwa 2 Jahre vor
Gelöst
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 ...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
Transpose
Write a MATLAB script in order to convert a random length row vector (v) into a column vector.
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
Gelöst
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...
etwa 2 Jahre vor
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...
etwa 2 Jahre vor | 0
Gesendet
Hamming Window Amplitude Correction
This simple script calculates the amplitude correction for a Hamming Window.
etwa 2 Jahre vor | 3 Downloads |

Gesendet
FFT Notes
This shows how to process a signal with an odd and even length fft.
mehr als 2 Jahre vor | 4 Downloads |

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 ...
fast 3 Jahre vor | 1
| akzeptiert
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...
fast 3 Jahre vor | 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.
fast 3 Jahre vor | 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...
fast 3 Jahre vor | 0
| akzeptiert
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...
fast 3 Jahre vor | 0
| akzeptiert
MATLAB Detection of Compiler
See comments above for answer.
mehr als 4 Jahre vor | 0
| akzeptiert