![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7835374_1522123540852_DEF.jpg)
Cong Ba
The MathWorks Inc
2016년부터 활동
Followers: 0 Following: 0
I work in the Engineering Development Group at MathWorks and have a background in Biomedical Engineering.
My professional interests include MATLAB.
Feeds
답변 있음
How can i compute the mean of specific number of table rows?
Try reshape: a = randn(100,1); % assume this is the column you have b = reshape(a,[10,10]); % reshape it so each co...
How can i compute the mean of specific number of table rows?
Try reshape: a = randn(100,1); % assume this is the column you have b = reshape(a,[10,10]); % reshape it so each co...
7년 초과 전 | 0
| 수락됨
답변 있음
Plot data from cell array
Try if this works for you: %% a is a cell array of 1x7 cell and each of this is a 1x100 double a = cell(1,7); for i =...
Plot data from cell array
Try if this works for you: %% a is a cell array of 1x7 cell and each of this is a 1x100 double a = cell(1,7); for i =...
7년 초과 전 | 1
| 수락됨
답변 있음
How to do cubic spline smoothing of two 2D matrixes of equal size
Have you checked out this? https://www.mathworks.com/help/matlab/ref/interp2.html#inputarg_method
How to do cubic spline smoothing of two 2D matrixes of equal size
Have you checked out this? https://www.mathworks.com/help/matlab/ref/interp2.html#inputarg_method
7년 초과 전 | 0
답변 있음
How to effectively assign values to different location in a TABLE?
%% copied from your question nums =[5;6;7;12;13;14;16;17;18]; v1_threshold = 0.1:0.1:0.2; table = cell2table (repmat...
How to effectively assign values to different location in a TABLE?
%% copied from your question nums =[5;6;7;12;13;14;16;17;18]; v1_threshold = 0.1:0.1:0.2; table = cell2table (repmat...
7년 초과 전 | 0
답변 있음
Error message when using findpeaks and csvread
Try this (remember to put the csv file in the working folder): data = csvread('baselinesmooth.csv'); [pks,locs] = findpe...
Error message when using findpeaks and csvread
Try this (remember to put the csv file in the working folder): data = csvread('baselinesmooth.csv'); [pks,locs] = findpe...
7년 초과 전 | 0
답변 있음
Can I extract the ROIs into separate images for classification?
Try something like this: (assume you've got your ROIs as seperate matrices, I_ROI_1, I_ROI_2, etc. ) I{1} = I_ROI_1; I{...
Can I extract the ROIs into separate images for classification?
Try something like this: (assume you've got your ROIs as seperate matrices, I_ROI_1, I_ROI_2, etc. ) I{1} = I_ROI_1; I{...
7년 초과 전 | 0
| 수락됨
답변 있음
Parallel calculations on matlab
Memory usage is actually irrelevant here. You actually wanted to look at CPU usage. And this question is actually more relevant ...
Parallel calculations on matlab
Memory usage is actually irrelevant here. You actually wanted to look at CPU usage. And this question is actually more relevant ...
7년 초과 전 | 1
답변 있음
plotting data by month/year
Hi Alexis, You may look into this data type called <https://www.mathworks.com/help/matlab/timetables.html timetable> . It is ...
plotting data by month/year
Hi Alexis, You may look into this data type called <https://www.mathworks.com/help/matlab/timetables.html timetable> . It is ...
7년 초과 전 | 0
답변 있음
How can I insert 2 figures in one figure?
Hi Agustin, It seems like you want to have 2 separately plots on one figure - and if this is the case, <https://www.mathworks...
How can I insert 2 figures in one figure?
Hi Agustin, It seems like you want to have 2 separately plots on one figure - and if this is the case, <https://www.mathworks...
7년 초과 전 | 0
채널
Cong's 1st Channel - Dew Point
Cong's 1st Channel - will use temperature and humidity to calculate dew point, or more.
거의 8년 전
질문
about 2d spaps (smoothing spline)
I have some sparse data points in a 3d space, let's say temperature, humidity and attendance of my class of 100 days. So I have ...
거의 9년 전 | 답변 수: 0 | 0