Kevin Xia
2017년부터 활동
Followers: 0 Following: 0
I am currently a Master's student in Aerospace Engineering/ Robotics. I have interned with Mathworks, and have used MATLAB and Simulink extensively.
Feeds
답변 있음
How to insert new empty lines in middle of an exisiting text file
Try using the functions importdata and strjoin with '\n' as the delimiter. importdata will give output a cell array that you can...
How to insert new empty lines in middle of an exisiting text file
Try using the functions importdata and strjoin with '\n' as the delimiter. importdata will give output a cell array that you can...
대략 7년 전 | 0
답변 있음
pks array going from 2 arguments to 1
Try the following: [pks,locs] = findpeaks(Sbb); if numel(pks)==2 Diff = abs(w(locs(1))-w(locs(2))); elseif numel...
pks array going from 2 arguments to 1
Try the following: [pks,locs] = findpeaks(Sbb); if numel(pks)==2 Diff = abs(w(locs(1))-w(locs(2))); elseif numel...
7년 초과 전 | 0
| 수락됨
답변 있음
Find index of specific ordered pair in layered matrix
Suppose that you want to find the row and column index where the second layer is -6 (A(1,1)) and where the third layer is -1 (A(...
Find index of specific ordered pair in layered matrix
Suppose that you want to find the row and column index where the second layer is -6 (A(1,1)) and where the third layer is -1 (A(...
7년 초과 전 | 0
| 수락됨
답변 있음
I want to randomly select from a list of rows from a matrix to change the values
Try using randperm instead of randn. What randperm does is that it generates a random permutation from 1 to n. This can be usefu...
I want to randomly select from a list of rows from a matrix to change the values
Try using randperm instead of randn. What randperm does is that it generates a random permutation from 1 to n. This can be usefu...
7년 초과 전 | 0
| 수락됨
답변 있음
Detect the vertical and horizontal lines and than crop the area that is hand written
You can use bwconncomp and regionprops to find the centroids of each whitespace box. The centroids can be used to generate subim...
Detect the vertical and horizontal lines and than crop the area that is hand written
You can use bwconncomp and regionprops to find the centroids of each whitespace box. The centroids can be used to generate subim...
7년 초과 전 | 1
답변 있음
how to divide image into 25 equal parts
You can use mat2tiles, which is available here for download: <http://www.mathworks.com/matlabcentral/fileexchange/35085-mat2til...
how to divide image into 25 equal parts
You can use mat2tiles, which is available here for download: <http://www.mathworks.com/matlabcentral/fileexchange/35085-mat2til...
7년 초과 전 | 0