Morgan
University of Texas at El Paso
Followers: 0 Following: 0
Mechanical Engineering M.S. Electrical Engineering Ph.D. Candidate
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
RANK
1.848
of 295.448
REPUTATION
34
CONTRIBUTIONS
0 Questions
16 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
16.600 of 20.227
REPUTATION
5
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
13
ALL TIME DOWNLOADS
55
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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 ...
8 maanden ago | 0
Submitted
Smooth Random Noise
N-dimensional array of locally smooth random noise
9 maanden ago | 7 downloads |
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...
10 maanden ago | 0
Simulate transmission line as s-parameters in Simulink
See Topic 8 -- Transmission Lines
10 maanden ago | 0
Submitted
Recursive Function Bisector
One-dimensional function bisector
10 maanden ago | 6 downloads |
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...
10 maanden ago | 0
| accepted
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...
10 maanden ago | 0
| accepted
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...
10 maanden ago | 1
| accepted
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...
10 maanden ago | 0
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...
10 maanden ago | 0
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...
10 maanden ago | 0
| accepted
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 ...
10 maanden ago | 0
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...
10 maanden ago | 0
| accepted
Solved
Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.
meer dan een jaar ago
Solved
Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...
meer dan een jaar ago
Solved
Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...
meer dan een jaar ago
Solved
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
meer dan een jaar ago
Solved
Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...
meer dan een jaar ago
Solved
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displayed ...
meer dan een jaar ago
Solved
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2 3 3 3 4...
meer dan een jaar ago
Solved
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
meer dan een jaar ago
Solved
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
meer dan een jaar ago
Solved
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
meer dan een jaar ago
Solved
Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000
meer dan een jaar ago
Solved
Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346
meer dan een jaar ago
Solved
Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...
meer dan een jaar ago
Solved
MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9
meer dan een jaar ago
Solved
MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8
meer dan een jaar ago