Codeshadow
Georgia Institute of Technology
Followers: 0 Following: 0
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 ...
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 ...
4 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...
Calculating the Regression Coefficient
For simple linear regression in the least-square sense, you could do something like this: % Calculating the regression coeffici...
4 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...
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...
4 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...
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...
4 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...
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...
4 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...
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...
4 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