Community Profile

photo

Morgan


University of Texas at El Paso

Last seen: 28 giorni fa Attivo dal 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

Statistiche

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

Visualizza badge

Feeds

Visto da

Risposto
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 ...

29 giorni fa | 0

Inviato


Smooth Random Noise
N-dimensional array of locally smooth random noise

2 mesi fa | 8 download |

Thumbnail

Risposto
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...

2 mesi fa | 0

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

2 mesi fa | 0

Inviato


Recursive Function Bisector
One-dimensional function bisector

2 mesi fa | 6 download |

Thumbnail

Risposto
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...

3 mesi fa | 0

| accettato

Risposto
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...

3 mesi fa | 0

| accettato

Risposto
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...

3 mesi fa | 1

| accettato

Risposto
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...

3 mesi fa | 0

Risposto
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...

3 mesi fa | 0

Risposto
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...

3 mesi fa | 0

| accettato

Risposto
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 ...

3 mesi fa | 0

Risposto
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...

3 mesi fa | 0

| accettato

Risolto


Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.

9 mesi fa

Risolto


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) ...

9 mesi fa

Risolto


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...

9 mesi fa

Risolto


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]

circa un anno fa

Risolto


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...

circa un anno fa

Risolto


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 ...

circa un anno fa

Risolto


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...

circa un anno fa

Risolto


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...

circa un anno fa

Risolto


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...

circa un anno fa

Risolto


Return area of square
Side of square=input=a Area=output=b

circa un anno fa

Risolto


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.

circa un anno fa

Risolto


Add two numbers
Given a and b, return the sum a+b in c.

circa un anno fa

Risolto


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

circa un anno fa

Risolto


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

circa un anno fa

Risolto


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...

circa un anno fa

Risolto


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

circa un anno fa

Risolto


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

circa un anno fa

Carica altro