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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 3

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

14 years ago | 1

| accepted

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

14 years ago | 0

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

14 years ago | 3

| accepted

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

14 years ago | 1

| accepted

Question


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

14 years ago | 4 answers | 1

4

answers

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 1

| accepted

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

14 years ago | 0

| accepted

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

14 years ago | 1

| accepted

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

14 years ago | 1

| accepted

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

14 years ago | 2

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

14 years ago | 1

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 1

| accepted

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

14 years ago | 0

| accepted

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

Load more