Respondida
Showing only 2 decimals
Is this what you want? sprintf('%.2e',0.123456789e-10) ans = 1.23e-11

más de 13 años hace | 1

| aceptada

Respondida
Global variables and multiple licenses of Matlab
Each instance of MATLAB is completely independent. Things like global variables are local to the instance of MATLAB that created...

más de 13 años hace | 1

| aceptada

Respondida
How can I subplot images close to eachother using subplot?
Copy subplot.m and edit line 128 (or there abouts) inset = [.02, .018, .004, .01]; % [left bottom right top] to be val...

más de 13 años hace | 0

Respondida
Why in the following class the members are not initialised?
I am going to build on Matt's answer ... Your problem is that "objects" in MATLAB are generally what are refer to as value cl...

más de 13 años hace | 2

Respondida
HOW can i restart ML?
You may want to look at: http://www.mathworks.com/matlabcentral/answers/1093-how-do-i-reset-matlab-to-its-launched-state or s...

más de 13 años hace | 0

Respondida
How to get numbers from string using match regular expression?
I think regexp(x, '(^|\s)(\d*)(\s)', 'tokens') will extract the numbers you want. It will return a cell array where each...

más de 13 años hace | 0

| aceptada

Respondida
Can I rely on the Handles numeration?
I wouldn't rely on the handle ids behaving in any sensible way unless you set them at the outset. There is no reason to have to ...

más de 13 años hace | 0

Respondida
Format of exponential with num2str
There was some discussion of this here http://www.mathworks.co.uk/matlabcentral/answers/9135-format-short-difference-across-t...

más de 13 años hace | 0

Respondida
Why 'play' doesn't work within a function?
This question has been asked and answered here before a number of times. The simple answer is that when the function exits, the ...

más de 13 años hace | 0

Respondida
Why does my Class take up less room than my variables?
If any of the properties of your class are handle classes (e.g., is |data| of class |myData|), then when you save the object I t...

más de 13 años hace | 0

Respondida
putting a ' in a title
You were so close, you need an extra ' title(' U'' squared ')

más de 13 años hace | 8

| aceptada

Respondida
Problem with installing matlab r2012 with windows 8 64 bit?
As a general hint, when buying computer software it is useful to pay attention to the system requirements. For the MATLAB studen...

más de 13 años hace | 0

Respondida
Warning: Unable to interpret TeX string
It is very possible that I have screwed up my systems LaTeX processing (I have been playing with it recently). For example, on m...

más de 13 años hace | 6

Respondida
Find moving average with filter
The key part of the documentation is: y(n) = b(1)*x(n) + b(2)*x(n-1) + ... + b(nb+1)*x(n-nb) - a(2)*y(n-1...

más de 13 años hace | 1

Respondida
Why do I get an error if do not define a constructor in the inherited class?
Classes and subclasses do not need a constructor. classdef mysimpleclass end is perfectly valid. If a subclass does n...

más de 13 años hace | 1

| aceptada

Respondida
Maximum variable size allowed by the program is exceeded.
The <http://www.mathworks.co.uk/support/solutions/en/data/1-IHYHFZ/index.html;jsessionid=c0bcdb25711d73648cbd0a75cfeb maximum va...

más de 13 años hace | 0

| aceptada

Respondida
Is it possible to set watchdogs (memory, exec time) in MATLAB?
On Linux the "external process" is pretty simple $ ulimit -t 600 -v 7000000 $ matlab It might be -m instead of -v, I ...

más de 13 años hace | 1

Respondida
selectively replace elements in vector
There are too many edge cases to give you a complete answer (and I don't want to do your work for you). Walter has tried to get ...

más de 13 años hace | 0

| aceptada

Respondida
Discussion about Answers & Votes
1) The number of accepted answers doesn't matter to me. I like when answers are accepted so I know the question is solved, most ...

más de 13 años hace | 2

Respondida
How to change text size in boxplot
I can think of two ugly hacks that work ... The first is to set the default font size of all text labels for the plot h ...

más de 13 años hace | 1

| aceptada

Respondida
how can I check to see if two different matricies contain any of the same numbers?
What you are interested in is if A and B intersect. The |intersect| function will tell you which elements are in both A and B or...

más de 13 años hace | 0

Respondida
Make dataset arrays part of base MATLAB?
To me MATLAB would be nearly useless without the stats toolbox so I could really care less where the dataset functionality comes...

más de 13 años hace | 0

Respondida
[DISCONTINUED] MATLAB Answers Wish-list #2 (and bug reports)
I am trying to find unanswered questions with 0 votes, but I want them listed newest to oldest. If I search for unanswered and s...

más de 13 años hace | 3

Respondida
White Noises Generation in Matlab
This isn't really a MATLAB question, I think your understanding of random processes is a little off. If you generate finite leng...

más de 13 años hace | 0

Respondida
Is it possible to dynamically add methods to an object, or to build a generic method that "catches attempts to access nonexistent methods"?
Probably not optimal, but you might be able to dynamically overload what |classname| returns, which in turn may affect what is c...

más de 13 años hace | 1

Respondida
How can I get an upright mu with latex interpreter?
There is no easy way. There are packages in the FEX that can do certain things. The easiest way would probably be to overload |t...

más de 13 años hace | 0

Respondida
Can you change font size in LaTeX formatted comments?
There does not appear to be an easier way of doing it. Your approach of changing the font size within the math environment will ...

más de 13 años hace | 0

Respondida
Deleting sepecific character from cell array
This sounds like a job for a regular expression (albeit a simple one) x = {'"22000'; '"contig_2012'; 'abc'}; regexprep(x...

más de 13 años hace | 0

| aceptada

Respondida
Prevent MATLAB from displaying full stack on error.
I think with careful use of try/catch and |throwascaller| you can achieve this. Just be careful since it makes debugging very di...

más de 13 años hace | 6

Respondida
I lost a matlab session through ssh, but it's still running. How can I pull data out?
It really depends on what the process is doing. Usually the process should get killed when your ssh session end. You might be ab...

más de 13 años hace | 1

Cargar más