photo

Matt

MathWorks

Last seen: 10 months 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

I am a Training Engineer at the MathWorks. I focus primarily on Finance training.
My academic background is in Physics and Math.

统计学

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
I need a way to assign a value for each pixel based on RGB values. which will be based on equations for red,blue and green
The imread function in MATLAB does something like this. It will output a matrix with rows, columns (each element corresponding t...

6 years 前 | 0

已回答
How to use fsolve to solve this system of equations?
If you have the Symbolic Math Toolbox in MATLAB, you can get all 5 solutions exactly. syms k x y z eqns = [2*x == -2...

6 years 前 | 0

已回答
Storing the peak values of a fft
Hi Gavin You can find local maxima by using the "findpeaks" function in MATLAB. Below is an example: x = linspace(0,8*p...

6 years 前 | 0

已回答
How do i randomly distribute 4 numbers in 1*100 matrix?
Hi Rakibul, What you can do is create a matrix containing the numbers you want. I will call it L. Then create a random integ...

6 years 前 | 0

| 已接受

已回答
Create multidimensional matrices from two multidimensional cells.
Hi Sumedh, The matrices you are starting with have one dimension. So to multiply each of the 96 matrices, you just have to be...

6 years 前 | 0

| 已接受

已回答
Counting Y axis lines
plot(x,y) ax = gca; n = numel(ax.YTick);

6 years 前 | 0

已回答
HELP:) Electric Field lines on MatLab (solving fields given coordinate points)
In your line quiver(XI,YI,Ex./E,Ey./E); change E to En. You are currently dividing by a complex number.

8 years 前 | 1