photo

Matt

MathWorks

Last seen: 約1ヶ月 前 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 解答

ランク
5,046
of 300,813

評判
10

コントリビューション
0 質問
7 回答

回答採用率
0.00%

獲得投票数
1

ランク
 of 21,086

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
114,887
of 171,134

コントリビューション
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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 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...

8年弱 前 | 0

| 採用済み

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

8年弱 前 | 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年以上 前 | 1

解決済み


Matrix of almost all zeros, except for main diagonal
Write a program to input an integer n and build a n-by-n matrix with the numbers 1,2,...,n on the main diagonal and zeros elsewh...

約10年 前