Codeshadow - MATLAB Central
photo

Codeshadow


Georgia Institute of Technology

Last seen: 2 years 前 自 2017 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB AnswersFrom 07/17 to 04/25Use left and right arrows to move selectionFrom 07/17Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 个提问
6 个回答

排名
2,956
of 298,046

声誉
20

贡献数
1 个提问
6 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 20,526

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,187

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Indexing a 3D Surface
You would need to pass in the x and y vectors as 2D arrays (think of it as XY coordinates for the surface). You can accomplish ...

5 years 前 | 0

| 已接受

已回答
Calculating the Regression Coefficient
For simple linear regression in the least-square sense, you could do something like this: % Calculating the regression coeffici...

5 years 前 | 0

| 已接受

已回答
a function that draws a plot and use an input for the filename of the plot
See below for sample code: close all % Initialize some data temperatures = rand(1,30)*35; plot_test(temperatures, 1); f...

5 years 前 | 0

| 已接受

已回答
a function that draws a plot and use an input for the filename of the plot
You can use a sprintf command in your function as: saveLocation = sprintf(‘C:\Figure_%d.jpg’, figurenumber); saveas(gcf, s...

5 years 前 | 0

已回答
Echo effect to an audio recording
Since you are clearly looking to learn Matlab, I would recommend you try implementing the code yourself. For a start though, und...

5 years 前 | 0

| 已接受

已回答
Outline the shape in the image
You could try using contourf and specify the contour levels as an input argument. For example: % Create an example mesh x = l...

5 years 前 | 0

提问


Multidimensional Sparse Matrix Representation
I've been going through the forum archives for an efficient solution to multidimensional sparse matrix representation in Matlab,...

7 years 前 | 1 个回答 | 0

1

个回答