photo

Domanic


Last seen: 4년 초과 전 2014년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

0 질문
9 답변

Cody

0 문제
31 답안

순위
2,576
of 297,527

평판
24

참여
0 질문
9 답변

답변 채택
0.00%

획득한 표
6

순위
 of 20,454

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
15,255
of 159,075

참여
0 문제
31 답안

점수
330

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Solver
  • Knowledgeable Level 1
  • Revival Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
I have a column(29,1) and each cell has 4 digits. I want to remove first 2 digits from each cell
There are a couple of ways of doing this. If you just want the values, you could use: A=(5001:5029).'; % the 29x1 vector ...

6년 초과 전 | 0

| 수락됨

답변 있음
How to filter a low frequency movement from my data
Applying a filter with filtfilt removes the filter offset, so you'll probably find that combining filtfilt with a moving average...

대략 7년 전 | 0

답변 있음
How to specify path name in sprintf?
You can do this through string concatenation: mypath = 'D:\BTP\0 (1)\'; for m=0:59 filename = [mypath num2str(m) '.wav...

대략 7년 전 | 1

| 수락됨

답변 있음
How to join the subelements of a cell?
To join elements of the cell array, y, you can use: y = cell2mat(y); or y = {cell2mat(y)}; for a cell array. ...

대략 7년 전 | 0

답변 있음
create a new matrix with elements from different sized matrices
I think the original code you had was correct, Sumedh. A minimum working example would be helpful, though. Try the following, wh...

대략 7년 전 | 0

답변 있음
Find the highest possible value in a matrix that complies to a certain range
I think I understand your question. You are interested in the row which is closest to the bottom of the matrix ('lowest' in that...

대략 7년 전 | 0

답변 있음
How to write matrix elements with its position?
Or ind2sub: A = [1 2 3; 4 5 6; 7 8 9].'; [a,b] = ind2sub(size(A),1:numel(A)); fprintf('%d%d%d\n',[b.' a.' A(:)].')

대략 7년 전 | 2

답변 있음
How can we equate two matrices element by element suppose one matrix is a variable matrix and the other is a coefficient matrix
To test two equal-sized matrices for equality element-wise, you simply use the == operator. For example, take the two random bin...

대략 7년 전 | 0

답변 있음
"locale" system error
I've seen this on Matlab 2014a, too. A workaround is to run the command setenv('LC_ALL','C') after Matlab starts. The ...

거의 11년 전 | 3