photo

Codeshadow


Georgia Institute of Technology

Last seen: 2 years ago Active since 2017

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

1 Question
6 Answers

RANK
2,942
of 297,503

REPUTATION
20

CONTRIBUTIONS
1 Question
6 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 20,449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,017

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
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 ago | 0

| accepted

Answered
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 ago | 0

| accepted

Answered
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 ago | 0

| accepted

Answered
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 ago | 0

Answered
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 ago | 0

| accepted

Answered
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 ago | 0

Question


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 ago | 1 answer | 0

1

answer