Community Profile

photo

Codeshadow


Georgia Institute of Technology

Last seen: 11 mois il y a Actif depuis 2017

Statistiques

  • Knowledgeable Level 2
  • First Answer

Afficher les badges

Content Feed

Afficher par

A répondu
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 ...

presque 4 ans il y a | 0

| A accepté

A répondu
Calculating the Regression Coefficient
For simple linear regression in the least-square sense, you could do something like this: % Calculating the regression coeffici...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 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,...

plus de 6 ans il y a | 1 réponse | 0

1

réponse