photo

Matt

MathWorks

Last seen: 16 days 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

I am a Content Developer at MathWorks. I focus primarily on AI. My academic background is in Physics and Math.

Programming Languages:
Python, C++, C, C#, MATLAB, SQL

统计学

All
MATLAB Answers

0 个提问
7 个回答

Cody

0 个问题
1 个答案

排名
4,939
of 297,503

声誉
10

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
120,013
of 159,017

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

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

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

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

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

7 years 前 | 0

| 已接受

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

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

9 years 前 | 1