photo

Morgan


University of Texas at El Paso

Last seen: 2 months ago Active since 2022

Followers: 0   Following: 0

Mechanical Engineering M.S. Electrical Engineering Ph.D. Candidate

Programming Languages:
Javascript, MATLAB, HTML, CSS
Spoken Languages:
English
Professional Interests:
Antennas and Electromagnetic Propagation, Microelectronics, Photonics and Nanotechnology, Computational Fluid Dynamics (CFD), Thermodynamics and Heat Transfer

Statistics

All
  • 3 Month Streak
  • Personal Best Downloads Level 1
  • First Submission
  • Knowledgeable Level 2
  • Community Group Solver
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
optimization problem for exponential coefficients
This sounds like a non-linear regression problem if I'm understanding your question correctly. The function you're fitting to ...

4 months ago | 0

Answered
Nonlinear colormap for data that diverges
Would something like this work for you? % CALCULATE MESHGRID xa = linspace(-2,2,501) + 0.002; ya = linspace(-2,2,501) + 0.002...

6 months ago | 0

Answered
Simulate transmission line as s-parameters in Simulink
See Topic 8 -- Transmission Lines

6 months ago | 0

Answered
Calculate the first n terms of the recursion
Using the built-in MATLAB profiler, the biggest computational load is in the evaluations of integral(). Which is no surprise sin...

6 months ago | 0

| accepted

Answered
I need help in solving a matrix (Tensors)
If I'm understanding your question correctly, you're trying to calculatte an effective medium tensor of the form: where Us...

6 months ago | 0

| accepted

Answered
How to highlight lines on the coin.
% LOAD IMAGE B = imread('coin_data.png'); % CONVERT TO GRAY IMAGE B = im2double(B); B = rgb2gray(B); % REMOVE BLACK BOX...

6 months ago | 1

| accepted

Answered
Identify the maximum values within fixed time intervals of a time series data set
% INTERVAL TO SAMPLE Interval = 20; % TIME ARRAY Time = [ 4 5 6 7 8 9 10 25 26 27 28 29 46 47 48 49 50 58 59 60 ]; % CAL...

6 months ago | 0

Answered
How can I simplify a very complicated derivative (when using simplify does not help much)?
I'm assuming alpha, theta, q, and L are constants with respect to gamma. This code provides a bit simplier of a final equation a...

6 months ago | 0

Answered
How to measure length and angle of (nearly) linear shapes in a binary image?
Check out the [BW,threshOut,Gx,Gy] = edge(grayImage). It returns the x- (Gx) and y-gradients (Gy) of every edge. The normal vect...

6 months ago | 0

| accepted

Answered
How can i get exact data from a figure?
I'm assuming you're talking about extracting data from a picture of a figure, you can use something like WebPlotDigitizer. It's ...

6 months ago | 0

Answered
plotting specific data points on a cone plot.
If you have the x, y, and z coordinates of the data points you can use plot3 hold on plot3(x(:),y(:),z(:),'.r','MarkerSize',12...

6 months ago | 0

| accepted

Answered
Plotting continuous motion using loops
Try something along these lines: % CREATE ANGLE ARRAY theta = linspace(-65,0); i = length(theta); % LOOP FORWARD THEN BACK...

1 year ago | 1

| accepted

Answered
Split structured text delimated by comma in a table column
Try using the function newStr = split(Airport,','); You may need to wrap the first argument with string(Airport) to make sure...

1 year ago | 0

Answered
How perform Kinetic energy summation having matrix and vector
So kinetic energy must always be a scalar quantity, i.e. m is a scalar, velocity is a vector but by squaring it you're finding m...

1 year ago | 0

Answered
derivative of bessel function of the first kind !!
I've found a slightly easier implementation of the derivative for you based on this link. It essentially says that In MATLAB...

1 year ago | 0

Answered
How can i implement my method ?
Here is a function I've created that hopefully answers your question: function [x,fval,fevals] = NewtonFourier(f,ab,tol) % NEW...

1 year ago | 1

| accepted