Pregunta


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

más de 9 años hace | 0 respuestas | 1

0

respuestas

Respondida
[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...

más de 9 años hace | 0

| aceptada

Pregunta


[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...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Respondida
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 ...

más de 9 años hace | 3

| aceptada

Respondida
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...

más de 9 años hace | 7

| aceptada

Respondida
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_...

más de 9 años hace | 2

| aceptada

Respondida
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...

más de 9 años hace | 1

Respondida
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...

más de 9 años hace | 0

| aceptada

Respondida
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...

más de 9 años hace | 0

Resuelto


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

más de 9 años hace

Respondida
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 ...

más de 9 años hace | 2

| aceptada

Respondida
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...

más de 9 años hace | 2

Respondida
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...

más de 9 años hace | 2

Pregunta


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) ...

más de 9 años hace | 1 respuesta | 1

1

respuesta

Respondida
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...

más de 9 años hace | 3

| aceptada

Enviada


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

más de 9 años hace | 3 descargas |

Thumbnail

Respondida
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>: ...

más de 9 años hace | 4

| aceptada

Pregunta


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...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

casi 10 años hace | 1 respuesta | 2

1

respuesta

Respondida
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...

casi 10 años hace | 2

| aceptada

Resuelto


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...

alrededor de 10 años hace

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

más de 10 años hace | 0

Enviada


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

más de 10 años hace | 7 descargas |

Thumbnail

Respondida
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...

más de 10 años hace | 1

| aceptada

Pregunta


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...

más de 10 años hace | 2 respuestas | 8

2

respuestas

Respondida
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...

más de 10 años hace | 0

| aceptada

Enviada


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

más de 10 años hace | 2 descargas |

Thumbnail

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

más de 10 años hace | 2

Pregunta


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...

casi 11 años hace | 2 respuestas | 2

2

respuestas

Pregunta


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:/...

casi 11 años hace | 1 respuesta | 5

1

respuesta

Cargar más