已回答
filtfilt for filter.m ?
If you have R2011b+ (or a+?), using the standard filtfilt. If not, see <http://www.mathworks.com/matlabcentral/fileexchange/170...

12 years 前 | 0

已回答
Copy figure - bad quality
This will not improve the image like export_fig but it does reproduce what's on screen -so if if you do not see grotty graphics ...

12 years 前 | 0

已回答
append/save same variable with updated values into .mat file(row-wise)
See the Project Waterloo MAT-file Utilities, they will let you "grow" a version 6 MAT-file entry using AppendVector and AppendMa...

12 years 前 | 0

已回答
Copy figure - bad quality
See <http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig>

12 years 前 | 1

已回答
matlab parallel computing/GPU error msg
I think it means you do not have the Parallel Computing Toolbox. Try ver at the command line.

12 years 前 | 1

已回答
Matlab ResizeFcn callback
If you a using the mouse to resize, the figure will always be updated multiple times because it has multiple sizes between the s...

12 years 前 | 1

已回答
Save figure with java graphic object
Any Java objects would needs to be fully serializable. See Saving and Loading Java Objects to MAT-Files in the MATLAB docs (note...

12 years 前 | 0

| 已接受

已回答
Array Division
Were you expecting this? >> u = [1 2 3 4];v = [5 6 7 8]; >> u./v ans = 0.2000 0.3333 0.4286 0.5000 N...

13 years 前 | 8

已回答
find row with certain values
>> x=[1 5 6; 5 4 3; 9 4 2]; >> [a b]=find(x==4); >> [c d]=find(x==5); >> intersect(a,c) ans = ...

13 years 前 | 5

已回答
Matlab Compiler installation problem - installed but not in list when "ver" command
Does it help to Update Toolbox Path Cache from Preferences?

13 years 前 | 0

已回答
gui
I prefer to keep the GUI and its support code separate from the data processing chain which GUIDE is not good at (in my hands an...

13 years 前 | 0

已回答
MATLABPATH environment variable not found in R2011a on Mac OS X Lion
Could java.lang.System.setProperty('user.home',... at the ML prompt help?

13 years 前 | 0

已回答
Callback function
You need ... 'Callback', {@bpmaall_Callback,x,y,uv});%no ()

13 years 前 | 0

| 已接受

已回答
Clicking Disabled Button Generates Error
pause causes the event despatch thread to be flushed. It looks then, as though the second button click event is despatched befor...

13 years 前 | 0

已回答
GUI Matlab
Or you could try Project Waterloo at <http://sourceforge.net/projects/waterloo/> That provides support for JTabbedPanes as we...

13 years 前 | 0

已回答
nmatrix function in Waterloo
Or <http://sigtool.sourceforge.net/> if you also want the code. The FEX only has a PDF on it because the code is GNU GPL which t...

13 years 前 | 0

已回答
Stream Data File using System Objects
The MAT-file utilities form the FEX have been updated to provided support for fread and for memmapfile and matlab.io.MatFile obj...

13 years 前 | 2

已回答
Any ideas why I am getting this 'catch' error? Does anyone know how I can solve it?
try thisdata=urlread(thisurl); catch continue end ....

13 years 前 | 0

已回答
Libpointers and multilevel pointers
Does any of this help? <http://www.mathworks.com/matlabcentral/answers/6198-attempt-to-call-external-dll-function-causing-seg...

13 years 前 | 0

已回答
How to correct the amplitude of the vectors displayed in a 2D-vector-field plot?
Would setting scale to 0 help? See doc quiver

13 years 前 | 0

| 已接受

已回答
Saving GUI plot to bitmap file without displaying Matlab figure
You could draw the figure using Java. The FEX has several examples using JFreeChart. The pic below shows one using a standard MA...

13 years 前 | 0

已回答
DYLD_LIBRARY_PATH problem
This might help <http://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/EnvironmentVa...

13 years 前 | 1

已回答
Programmatic Check For Monospace Font?
listeners=com.mathworks.mde.cmdwin.CmdWinDocument.getInstance().getDocumentListeners(); listeners(3).getFont() See Yair's blo...

13 years 前 | 2

| 已接受

已回答
MATLAB function "save" and "-V7.3"
TMW do seem to struggle with file formats I agree with @Jan above that not having a switch to disable compression in both v7 ...

13 years 前 | 5

已回答
Overriding subsref and subsasgn - effect on private properties
David Publishing private properties from public methods is not unique to MATLAB. It can be source of problems in other OOP la...

13 years 前 | 1

已回答
Failure to release memory when releasing java objects
clear obj in the Release function serves no useful purpose - it only clears the local copy of obj in the scope of that function....

13 years 前 | 0

已回答
"MatFile objects only support '()' indexing" ?
As Walter points out, the new matfile class has some significant limitations. No linear indexing, no logical indexing, subscript...

13 years 前 | 2

已回答
overloading subsref
Daniel Is this any use? It is called from subsref in some of my own custom objects and converts from substruct to subs: ...

13 years 前 | 2

已回答
Bad homework problems
Each problem/class/unit will have a set of aims and objectives. Those will be tailored to the audience, as will the choice of pr...

13 years 前 | 1

已回答
Overriding subsref and subsasgn - effect on private properties
David Would it help to have your test class extend a superclass that has the private properties in it?: classdef testpri...

13 years 前 | 0

加载更多