photo

Codeshadow


Georgia Institute of Technology

Last seen: 거의 2년 전 2017년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

1 질문
6 답변

순위
2,941
of 297,457

평판
20

참여
1 질문
6 답변

답변 채택
0.0%

획득한 표
0

순위
 of 20,438

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 158,938

참여
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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 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년 초과 전 | 답변 수: 1 | 0

1

답변