Respondida
greek letters in a static text (GUI)
Now lets see if I can get all the font encodings correct: h = uicontrol(gcf, 'Style', 'Text', 'String', 'π') Just use ex...

casi 15 años hace | 0

Respondida
struct array
Does this work? [A(:).id] = B(:).id

casi 15 años hace | 0

Respondida
making less space between figures in subplot
So I dislike all the solutions I have seen of moving subplots around. One of the nice features of subplot is that you can use it...

casi 15 años hace | 3

Respondida
making less space between figures in subplot
The FEX is your friend... I would start with: <http://www.mathworks.com/matlabcentral/fileexchange/27991-tight-subplot> ...

casi 15 años hace | 1

| aceptada

Respondida
calling super class method which has a different name
Are there plans to change this in near future? Only an employee of TMW can tell you that. Assume: # A class hierarchy...

casi 15 años hace | 0

Respondida
Why eval() and evalin() are not recommended?
See the FAQ and TMW for reasons to avoid eval and evalin <http://matlab.wikia.com/wiki/FAQ#Why_is_it_advised_to_avoid_using...

casi 15 años hace | 3

| aceptada

Respondida
in plotting,instead of 'ro' its needed to show numbers
The "o" in "ro" is not really a letter or a number. You best bet might be to use a loop and the text command ... figure; ...

casi 15 años hace | 1

| aceptada

Pregunta


What version of MATLAB do you code against
Inspired by: <http://www.mathworks.com/matlabcentral/answers/16427-difference-between-matlab-6-1r12-1-and-matlab-7-13r2011a> ...

casi 15 años hace | 4 respuestas | 1

4

respuestas

Respondida
difference between matlab 6.1r12.1 and matlab 7.13r2011a
It is important to note that the on-line release notes do not even go back that far. <http://www.mathworks.co.uk/help/techdoc...

casi 15 años hace | 0

Respondida
Automatically align comments to the right hand side of the editor
If you do not need to do it online, you might be able to do it. First, you could parse the file to find end of line comments. Th...

casi 15 años hace | 0

Respondida
Use data in other functions
I don't quite under stand your question. I am guessing the function make_subgui mkaes your subgui and returns its handle (f in t...

casi 15 años hace | 0

| aceptada

Respondida
Hide/Disable 'File' menu in Matlab figure window
The simplest might be: set(gcf, 'MenuBar', 'None') If you need more control I would start with: <http://undocumentedmatlab....

casi 15 años hace | 1

| aceptada

Respondida
Overload get(0, 'MonitorPositions')
While it is not a very satisfying answer, upgrading to r2011a fixed my problem. I am not sure if this is a universal solution or...

casi 15 años hace | 0

| aceptada

Respondida
GUIDE-Program interface cut-off
Are you relying on the default font and font size or are you setting it? I would think: set(hfig, 'DefaultAxesFontName', fo...

casi 15 años hace | 1

| aceptada

Respondida
Get Object Variable Name inside the objects function
I think you are looking for inputname doc inputname

casi 15 años hace | 1

| aceptada

Respondida
Is deleting threads helpful in this forum?
I think the OP should be able to delete a question when there are no answers (and maybe no comments). Once people have put some ...

casi 15 años hace | 2

Respondida
OOP in Matlab: Why can't methods access properties directly?
Fact 1:Matlab sends arguments to functions BY-VALUE by default. This is not really true. While MATLAB does not pass by refere...

casi 15 años hace | 1

Respondida
Multiple Figure Window Order
What do you do with figure 1, when you move on to figure 2? Do you close it, minimize it or move it? If you close it, you can do...

casi 15 años hace | 0

Respondida
how can i get a horzenital vector?
If there is any chance that you matrix will have complex numbers you need to be careful with the difference between ' (ctranspos...

casi 15 años hace | 0

Respondida
Multiple Figure Window Order
You can reverse the order by setting the "children" property of the root: set(0, 'Children', flipud(get(0, 'Children'))) you...

casi 15 años hace | 0

Respondida
How to plot errorbar with only upper error bars?
The simplest way might be to do: errorbar(X,Y,zeros(size(Y)),U) you could also hack the code to not plot the lower bar at al...

casi 15 años hace | 1

| aceptada

Respondida
isprop for custom classes
I don't know why TMW only implemented isprop for custom classes in r2011a, but it is pretty easy to work around. To test if a st...

casi 15 años hace | 0

| aceptada

Respondida
Requesting an audio visual database for our project
<www.youtube.com>

casi 15 años hace | 0

| aceptada

Respondida
Problem with Random data delay - Signal Processing,
Typically a Poisson process (homogenous or non-homogenous) produces a set of times at which event occurs. This is very different...

casi 15 años hace | 0

Respondida
audio plot of a avi file
You can use an external program to extract the audio from the avi file into a wav file and use the solutions you already have. D...

casi 15 años hace | 0

Respondida
How to cast a subclass object to its superclass type..?
First, since r2011a MATLAB supports "Heterogeneous Arrays": <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/brk7uz...

casi 15 años hace | 0

| aceptada

Respondida
Expand 1-D array to 2-D matrix using 'ones' function and colon ':'
It is not that crazy. It is basically matrixA = 6:10; for ii = 1:5 for jj = 1:5 temp(ii, jj) = matrixA(1, jj...

casi 15 años hace | 0

| aceptada

Respondida
Problem with filtfilt (i suppose)
I would zero pad your signal on both ends. This might help the transients die down a little. You could also window the resulting...

casi 15 años hace | 0

Respondida
smoothing out a matrix
It really should be doc filter2 doc fspecial Yes you need two matrices. The first matrix is the data (i.e., your 100x...

casi 15 años hace | 0

Respondida
Change in subs() functionality from 2010b to 2011 a and b?
You should really contact customer support on this one. I did not see anything about subs in my quick look at the release notes ...

casi 15 años hace | 0

Cargar más