질문


why regexprep much slower than strrep
Consider the following simplified example: str = cellstr(repmat('987_890',1e5,1)); timeit(@()strrep(str,'_','')) time...

9년 초과 전 | 답변 수: 0 | 1

0

답변

답변 있음
[Bug?] Print to eps on Win produces Unix line endings
Since R2014b, on Win: it is not a bug but a change in behavior of the |print()| function. A workaround is to read in the .ep...

9년 초과 전 | 0

| 수락됨

질문


[Bug?] Print to eps on Win produces Unix line endings
On Win7 64b with R2014b, printing a figure to .eps produces Unix line endings (LF or \n). Is this expected or a *bug*? Als...

9년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Faster way to create Rectangles
To use patches you need first to organize the |Xdata| and |Ydata| in matrices of 4 rows, one per vertex, and as many columns as ...

9년 초과 전 | 3

| 수락됨

답변 있음
How to stop parfor from launching a parallel pool automatically?
In the preferences: <</matlabcentral/answers/uploaded_files/19338/Capture.PNG>> . To edit parallel preferences programm...

9년 초과 전 | 7

| 수락됨

답변 있음
fprintf \n not working properly
You are printing a 5 column row: '%12.8f %12.8f %12.8f %12.8f %12.8f \n' but supplying 6 datatpoints: Data(row_...

9년 초과 전 | 2

| 수락됨

답변 있음
Save vector to m-file
Since R2014a you can use <http://www.mathworks.co.uk/help/matlab/ref/matlab.io.savevariablestoscript.html |matlab.io.saveVariabl...

9년 초과 전 | 1

답변 있음
Text out goes weird on Figure with underscores
By default the interpreter of text objects is set to |'tex'|. Set it to 'none', i.e. set(obj,'Interpreter','none') For...

9년 초과 전 | 0

| 수락됨

답변 있음
Matlab creating help but ignoring the header
The help should be a continuous block of comments. This means that the |classdef| or |function| declarations constitute a termin...

9년 초과 전 | 0

문제를 풀었습니다


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

9년 초과 전

답변 있음
Unexpected numerical errors in matrix/vector multiplication
The dot product implementation might differ according to the input, i.e. dot product between two vectors as opposed between two ...

9년 초과 전 | 2

| 수락됨

답변 있음
Rapid Vector Matching/Search Problem
You can try to use <http://www.mathworks.co.uk/help/matlab/ref/bsxfun.html |bsxfun()|>: find(all(bsxfun(@eq, A,B),2)) Wh...

9년 초과 전 | 2

답변 있음
sum of two different data series
You cannot use |DataIdx| directly as |subs| in |accumarray()| because in your example each streak of indices is treated as a sep...

9년 초과 전 | 2

질문


Subclassing abstract property with defined class, e.g myprop@char, throws an error
Suppose I have a superclass that I want to use to create an interface: classdef foo properties(Abstract) ...

9년 초과 전 | 답변 수: 1 | 1

1

답변

답변 있음
Autocomplete of properties for hgsetget derived class
I've been fiddling around and by mistake I found that the <http://www.mathworks.co.uk/help/simulink/slref/matlab.system.stringse...

9년 초과 전 | 3

| 수락됨

제출됨


Programmatically scroll Variables Editor
Opens a variable in the Variables Editor (grabs focus if open) and scrolls to position.

9년 초과 전 | 다운로드 수: 3 |

Thumbnail

답변 있음
How to Load a class from file avoiding the set methods with empty arguments?
From <http://www.mathworks.co.uk/help/matlab/matlab_oop/tips-for-saving-and-loading.html#brzypwx tips from saving and loading>: ...

9년 초과 전 | 4

| 수락됨

질문


Autocomplete of properties for hgsetget derived class
*DESIRED BEHAVIOUR* If you create: h = uicontrol('style','edit'); Then if you type h.<tab> and then sel...

9년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Compress only selected variables when saving to .mat
I have two variables |data| and |meta|, which I am saving in a compressed .mat file (version |'-v7'| ). The |data| variable is u...

거의 10년 전 | 답변 수: 1 | 2

1

답변

답변 있음
Clear text typed with input() from the command history
After digging into the Java internals with the help of <http://www.mathworks.co.uk/matlabcentral/fileexchange/authors/27420 Yair...

거의 10년 전 | 2

| 수락됨

문제를 풀었습니다


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

대략 10년 전

답변 있음
histc with split intervals
You could use |bsxfun()|. A simple example might clarify. Suppose you have sample inputs: A = [3, 5 10, 20 ...

10년 초과 전 | 0

제출됨


FINDSEQ
Find sequences of repeated (adjacent/consecutive) numeric values. NaNs and Infs are supported.

10년 초과 전 | 다운로드 수: 7 |

Thumbnail

답변 있음
Latex Support to publish in html format
Two workarounds: 1) Use |\int\int| with negative spaces in between |\!\!| text(.5,.5,'$\int\!\!\int_{E} f\left(x,y\right...

10년 초과 전 | 1

| 수락됨

질문


R2013b IDE nonsense. The story continues.
This is *NOT* a question but a point that I would like to raise. I _suggest_ to comment my post and/or add additional and justif...

10년 초과 전 | 답변 수: 2 | 8

2

답변

답변 있음
Programmatically scroll to row number in the variable editor
The full answer with links to a not-so-trivial problem can be found in a guest post on http://undocumentedmatlab.com/blog/variab...

10년 초과 전 | 0

| 수락됨

제출됨


Trim leading/trailing repeated values
Numeric vector/2D matrix. Trims leading, trailing or both sides; operates columnwise or row-wise.

10년 초과 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
TUTORIAL: how to format your question with markup
*ITALIC* <<http://i43.tinypic.com/23mlsnp.gif>>

10년 초과 전 | 2

질문


Programmatically scroll to row number in the variable editor
I have time series with millions of rows and I need to check what a particular value in a row and its neighbors look like. S...

거의 11년 전 | 답변 수: 2 | 2

2

답변

질문


Since R2013a, unique() retrieves first occurrence: where in the docs?
The release notes 2013a state the change of the set functions, but I can't seem to find the info in the documentation of <http:/...

거의 11년 전 | 답변 수: 1 | 5

1

답변

더 보기