Feeds
질문
Command window sometimes disappears after maximizing editor
I would double click the editor to maximize it to have more space for debugging. After that, I double click the editor again to ...
대략 1년 전 | 답변 수: 0 | 1
0
답변답변 있음
Calling the error function does not print the line number in r2022b
Yet another un-wanted feature. The bug report says it is fixed, but in R2023a it is still there.
Calling the error function does not print the line number in r2022b
Yet another un-wanted feature. The bug report says it is fixed, but in R2023a it is still there.
대략 1년 전 | 1
답변 있음
Annoying pop-ups in Linux workspaces
For figures, I dock them, so it would not pop-up at all. For other UIs, I don't see how to solve this. % you may want to put it...
Annoying pop-ups in Linux workspaces
For figures, I dock them, so it would not pop-up at all. For other UIs, I don't see how to solve this. % you may want to put it...
대략 1년 전 | 0
답변 있음
Section color no longer an option in 2021b?
Improved appearance? The default color scheme in R2022a is already a mess. Not to mention the missing section highlight, which c...
Section color no longer an option in 2021b?
Improved appearance? The default color scheme in R2022a is already a mess. Not to mention the missing section highlight, which c...
거의 2년 전 | 3
답변 있음
close a message box thru coding
m = findall(0,'type','figure','tag','Msgbox_ '); delete(m);
close a message box thru coding
m = findall(0,'type','figure','tag','Msgbox_ '); delete(m);
대략 2년 전 | 3
질문
Figure zoom-in by mouse scroll is disabled after ROI is drawn
figure;imshow(imread('pout.tif')); Normally, I can use mouse scroll to zoom-in and zoom-out. But, if I draw ROI, imrect(); Th...
대략 2년 전 | 답변 수: 1 | 0
1
답변질문
How to create ROI object handle?
h = figure; imshow(imread('pout.tif')); imrect(); hg = findobj(h,'Type','hggroup') % How can I "create" a ROI object so th...
대략 2년 전 | 답변 수: 3 | 0
3
답변질문
Codegen failed to infer output size of built-in function, ??? Dimension 1 is fixed on the left-hand side but varies on the right ([1 x :?] ~= [:? x :?])
I tried to codegen a large file containing downsample(), below is a simplified one. For some reason, I have to specify the outpu...
대략 2년 전 | 답변 수: 1 | 0
1
답변답변 있음
Skip commas inside brackets when the expression has operators
expr1 = '(?<=\([^)]*),(?=.*\))'; % comma inside parenthesis, like '(..., ...)' index_comma_in_paren = regexp(line, expr1); On...
Skip commas inside brackets when the expression has operators
expr1 = '(?<=\([^)]*),(?=.*\))'; % comma inside parenthesis, like '(..., ...)' index_comma_in_paren = regexp(line, expr1); On...
2년 초과 전 | 0
질문
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...
2년 초과 전 | 답변 수: 1 | 0
1
답변질문
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...
거의 3년 전 | 답변 수: 1 | 0
1
답변질문
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(). ...
거의 3년 전 | 답변 수: 1 | 0
1
답변질문
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 ...
대략 3년 전 | 답변 수: 1 | 0
1
답변답변 있음
How 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...
How 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...
3년 초과 전 | 0
질문
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...
3년 초과 전 | 답변 수: 2 | 0
2
답변질문
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...
3년 초과 전 | 답변 수: 0 | 1
0
답변질문
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...
3년 초과 전 | 답변 수: 0 | 0
0
답변질문
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...
3년 초과 전 | 답변 수: 0 | 0
0
답변질문
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() ...
3년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
Handling 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 ...
Handling 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 ...
3년 초과 전 | 1
답변 있음
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,...
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,...
3년 초과 전 | 0
답변 있음
How to get Data type of workspace loaded variables and how add that datatypes using script?
s=whos; numBytes = sum([s.bytes]);
How to get Data type of workspace loaded variables and how add that datatypes using script?
s=whos; numBytes = sum([s.bytes]);
3년 초과 전 | 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...
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...
3년 초과 전 | 0
질문
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. ...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
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 ...
3년 초과 전 | 답변 수: 1 | 0
1
답변질문
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...
거의 4년 전 | 답변 수: 0 | 0
0
답변질문
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...
거의 4년 전 | 답변 수: 1 | 0
1
답변질문
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...
거의 4년 전 | 답변 수: 1 | 0