Beantwortet
Limiting MATLAB memory usage
If you are happy for the array to contain garbage to start with, one solution is to memory map to a pre-existing file and skip t...

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 1

Gelöst


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

fast 14 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

fast 14 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

fast 14 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

fast 14 Jahre vor

Gesendet


Making MATLAB Swing More
Import of Java Swing GUIs from Eclipse, NetBeans, IntelliJ etc

fast 14 Jahre vor | 2 Downloads |

5.0 / 5
Thumbnail

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

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 1

Gesendet


OpenGL 3D graphics in MATLAB using jzy3d - a demo
A demo of some features of the open-source jzy3d 3d graphics package from http://www.jzy3d.org/

fast 14 Jahre vor | 2 Downloads |

4.0 / 5
Thumbnail

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

etwa 14 Jahre vor | 0

| akzeptiert

Gesendet


VVAR class: a fast "virtual" variable class for MATLAB.
VVAR can be used to pre-allocate arrays much faster than using zeros

etwa 14 Jahre vor | 2 Downloads |

4.7 / 5

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

etwa 14 Jahre vor | 8

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

etwa 14 Jahre vor | 5

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 2

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

etwa 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

Mehr laden