
Ilian
Statistics
MATLAB Answers
0 질문
6 답변
순위
2,265
of 258,317
평판
18
참여
0 질문
6 답변
답변 채택
0.00%
획득한 표
1
순위
of 110,426
참여
0 문제
0 해답
점수
0
배지 수
0
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
답변 있음
column circular permutaion on a matrix
If you just want to rotate the rows this could work: s = -3; % shift (both positive and negative values work) rows = size(A,1)...
column circular permutaion on a matrix
If you just want to rotate the rows this could work: s = -3; % shift (both positive and negative values work) rows = size(A,1)...
약 2년 전 | 0
답변 있음
How do I get a for loop to check a row for conditions?
If you want to use a for loop, you could have a look at if statement with multiple conditions % Your conditions a = 200; b ...
How do I get a for loop to check a row for conditions?
If you want to use a for loop, you could have a look at if statement with multiple conditions % Your conditions a = 200; b ...
약 2년 전 | 0
| 수락됨
답변 있음
Calculate the mean of nonzero pixels and set a threshold
If you just have a threshold, you don't even need to ceate an explicit mask: m = mean(volume(volume>=0.001)); % average of all ...
Calculate the mean of nonzero pixels and set a threshold
If you just have a threshold, you don't even need to ceate an explicit mask: m = mean(volume(volume>=0.001)); % average of all ...
약 2년 전 | 0
답변 있음
crop multiple images with freehand
imcrop should have a rectangle as input, but you have a mask. You could use roi = drawrectangle(); instead of imfreehand and t...
crop multiple images with freehand
imcrop should have a rectangle as input, but you have a mask. You could use roi = drawrectangle(); instead of imfreehand and t...
약 2년 전 | 0
| 수락됨
답변 있음
Changing image background from black to white
You can try using connected components. With relatively simple problems this could work: img_original = imread('image.jpeg'); ...
Changing image background from black to white
You can try using connected components. With relatively simple problems this could work: img_original = imread('image.jpeg'); ...
약 2년 전 | 1
| 수락됨
답변 있음
remove variables in txt file
You could remove the header line first with something like this: fileID = fopen('p_s.txt'); dataFormat = '%f %s'; C_text = te...
remove variables in txt file
You could remove the header line first with something like this: fileID = fopen('p_s.txt'); dataFormat = '%f %s'; C_text = te...
약 2년 전 | 0
| 수락됨