photo

Morgan


Last seen: Today 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

통계

All
MATLAB Answers

0 질문
16 답변

File Exchange

3 파일

Cody

0 문제
41 답안

순위
1,929
of 301,522

평판
34

참여
0 질문
16 답변

답변 채택
0.00%

획득한 표
3

순위
15,068 of 21,315

평판
13

평균 평점
0.00

참여
3 파일

다운로드 수
14

ALL TIME 다운로드 수
133

순위
11,514
of 175,118

참여
0 문제
41 답안

점수
556

배지 수
3

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

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

배지 보기

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

대략 2년 전 | 0

답변 있음
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년 전 | 0

답변 있음
Simulate transmission line as s-parameters in Simulink
See Topic 8 -- Transmission Lines

대략 2년 전 | 0

답변 있음
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...

대략 2년 전 | 0

| 수락됨

답변 있음
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...

대략 2년 전 | 0

| 수락됨

답변 있음
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...

대략 2년 전 | 1

| 수락됨

답변 있음
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...

대략 2년 전 | 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...

대략 2년 전 | 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...

대략 2년 전 | 0

| 수락됨

답변 있음
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 ...

2년 초과 전 | 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...

2년 초과 전 | 0

| 수락됨

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

대략 3년 전 | 1

| 수락됨

답변 있음
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...

대략 3년 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 1

| 수락됨