Statistics
RANK
2.434
of 260.380
REPUTATION
17
CONTRIBUTIONS
26 Questions
16 Answers
ANSWER ACCEPTANCE
57.69%
VOTES RECEIVED
3
RANK
16.534 of 17.897
REPUTATION
2
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
2
ALL TIME DOWNLOADS
19
RANK
of 111.843
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Skip commas inside brackets when the expression has operators
expr1 = '(?<=\([^)]*),(?=.*\))'; % comma inside parenthesis, like '(..., ...)' index_comma_in_paren = regexp(line, expr1); On...
3 meses ago | 0
Question
Numerical precision when using colon operator
I am doing simulation, which basically is iteration over time. Given the delta time dt and total time inter_pulse_space*num_puls...
3 meses ago | 1 answer | 0
1
answerQuestion
Zoom in using mouse scroll during uiwait sometimes fails
I want to zoom in a figure (with mouse scroll) during uiwait, however this did not always work. If you directly run main.m, y...
7 meses ago | 1 answer | 0
1
answerQuestion
When drawpolygon(), how to programtically delete a series of vertices?
I want to refine the automatically generated mask (denoted as init_mask below). I set corresponding points in drawpolygon(). ...
7 meses ago | 0 answers | 0
0
answersQuestion
Why would command syntax split string when using double quotes?
disp 'str ing' % good disp "str ing" % error, Too many input arguments I am on R2020a. It seems that the latter is equivalent ...
8 meses ago | 1 answer | 0
1
answerHow do I write a loop in MATLAB that continues until the user presses any key?
A version uses nested function instead of global variable function myLoopingFcn2() KEY_IS_PRESSED = 0; gcf set(gcf, 'Ke...
11 meses ago | 0
Question
Overlay image, code as function and code as script give differnt results
I want to overlay a colored image onto a gray image, and I found a solution here. If I run it as a script, it works perfectly. H...
12 meses ago | 2 answers | 0
2
answersQuestion
Colormap Editor, a "fixed" bug leads to other bugs?
In R2020a on windows 10, if you adjusted the system scaling factor, e.g. to 125%, then every time you open Colormap Editor, it w...
alrededor de 1 año ago | 0 answers | 1
0
answersQuestion
Under what circumstance, mex-version of lsqcurvefit run slower than m-code of lsqcurvefit?
I converted a function to mex using Coder, which contains lsqcurvefit() to get some speedup. But this mex-version is slower than...
alrededor de 1 año ago | 0 answers | 0
0
answersQuestion
Use coder to convert parfor-loop to mex, but mex version is much slower
I convert a function containing a parfor-loop into a mex file to get some speed up. But the mex version of this function is 5x t...
alrededor de 1 año ago | 0 answers | 0
0
answersQuestion
Will codegen accelerate sub-functions?
I have functions look like % main.m function main() for i fun1(); end % fun1.m function fun1() for j fun2() ...
alrededor de 1 año ago | 1 answer | 0
1
answerHandling bound constraints by the Levenberg-Marquardt algorithm
In matlab2020b, the doc of lsqcurvefit() has removed "The Levenberg-Marquardt algorithm does not handle bound constraints". So ...
alrededor de 1 año ago | 0
What is the alternate to eval function in a forloop?
Using cell array should help for i for j for k I{i,j,k}=getsiganl(filename1); II{i,j,...
alrededor de 1 año ago | 0
How to get Data type of workspace loaded variables and how add that datatypes using script?
s=whos; numBytes = sum([s.bytes]);
alrededor de 1 año ago | 1
Save and load variables of different samples
You could try cell(). You do not have to save the variable names. c = cell(1,1); % each col contains variables of a sample, eac...
alrededor de 1 año ago | 0
Question
codegen can't build the simplest demo
I am using codegen to build the 1st example in its doc, i.e. mcadd.m, it did not work. I am running Maltab2020a on CentOs 8.3. ...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Call mex function using system()?
I downloaded a toolbox, which contains a pre-compiled mex file, foo.mexa64. The calling syntax is a little bit confusing, but ...
más de 1 año ago | 1 answer | 0
1
answerQuestion
How to customize callback after drag and drop a folder into command window?
For files, it is easy to customize a callback after drag and drop file into command window, as shown here. However, for folders...
más de 1 año ago | 0 answers | 0
0
answersQuestion
Using Matlab coder with lsqcurvefit(), can not pass optimoptions as an argument to the target function
I want to convert my function to mex using matlab coder. The function fits data to an exponential model. function ab_fitted = m...
más de 1 año ago | 1 answer | 0
1
answerQuestion
How does vectorized lsqcurvefit() calculate sum-of-square, row-wise or column-wise?
I have a 1001 measuments, in each measurement, there is a curve y = a*exp(-b*x) where x and y are vectors containing 8 element...
más de 1 año ago | 1 answer | 0
1
answerQuestion
In parfor-loop, can I call a multi-threaded mex and get some speed-up?
I learned the concept of multi-threaded mex from undocumentedmatlab. (It seems this website is unaccessible now ...) I am wonde...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Mex, how to copy an array to output
In my mex function my_expm.c, I calculated matrix expoential for the input matrix, void mexFunction(int nlhs,mxArray *plhs[], i...
más de 1 año ago | 1 answer | 0
1
answerQuestion
With mxMalloc() and mxSetDoubles(), mex function crash matlab
I try to build a mex interface for a C function r8mat_expm1() that calculates matrix exponential, double *r8mat_expm1 ( int n, ...
más de 1 año ago | 3 answers | 1
3
answersQuestion
Mex, how to make visual studio support C11 standard?
I am building a mex function from c language, which uses a non-standard data type, i.e. double complex, double complex *my_f...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Remove duplicates only for specific values
A = [1,2,2,3,3,4,5,5,5,6]; value_to_remove = [2,3]; I have an array A, which contains some duplciates. I want to remove part o...
más de 1 año ago | 1 answer | 0
1
answerQuestion
During parfor-loop, suddenly get the error "unable to read file"
parfor k = 1:100000 % something else tmpStruct = load(filename); % something else end I have 3 scripts like the...
más de 1 año ago | 0 answers | 0
0
answersQuestion
Parallel computing, occasionally get Exception message "Message Catalog MATLAB:load was not loaded from the file"
I am running two jobs on a cluster, job1 on node1, job2 on node2. Job1 starts a little bit earlier than job2. Everything is fin...
más de 1 año ago | 1 answer | 0
1
answerQuestion
How can I run parallel job on a specific node?
I have access to a cluster, which contains several nodes, node01,node02, etc. The administrator has configured the Slurm profile...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Can I set MarkerFaceColor to part of the data points?
plot(1:10,1:10,'s') Can I set MarkerFaceColor to red for point 1,2,3 while leave the other points unchanged? I tried in intera...
más de 1 año ago | 1 answer | 0