Answered
How do I enter more than four rows in a GUI?
That is strange... here's my fix; Go back to "Table Property Editor" -> Select "Show Names below as the column headers" Go...

11 years ago | 0

| accepted

Answered
use previous element in 5 dimensional matrix for equation in current cell
"The relevant part of the code is below and I get the error "Subscript indices must either be real positive integers or logica...

11 years ago | 0

Answered
Having trouble assigning a handle variable to a figure with subplots
function myfig = makefigure() % stuff myfig = figure(3); % stuff end and then myfig = makefigure(); ...

12 years ago | 0

| accepted

Answered
Need help with a While loop
You may want to have a look at this file to see how they implement the rainflow method; http://www.mathworks.com/matlabcentral/f...

12 years ago | 0

| accepted

Answered
Why do I have a Syntax Error?
What are you trying to do; access a portion of BuyMatrix, or set BuyMatrix to be a matrix? The former would be accomplished with...

12 years ago | 0

| accepted

Answered
How can I save data in a GUI?
A couple of things. You seem to be on the right track with your data loading; EEGHere = evalin('base','EEG'); DataHere = EE...

12 years ago | 0

| accepted

Answered
How do you save a tiff or bitmap as a certain pixel resolution?
Instead of trying to save the capture of the frame with the image, why not save the image itself with something like; Img =...

12 years ago | 0

| accepted

Answered
How can I get a colormap that has the colors that varies smoothly from blue, through white, to red?
There's a programmatic way of doing it, but this is the GUI point and click method; Right click on the colorbar -> Open Colorma...

12 years ago | 1

| accepted

Answered
problem in usong if statement
You cannot use the brackets {} to group, and use the keyword 'end' to close if and for statements. If you absolutely must have i...

12 years ago | 0

Answered
How can I plot circles of different diameters within a square?
This file may do what you want, or similar enough to it; http://www.mathworks.com/matlabcentral/fileexchange/33213-growbubbles-...

12 years ago | 0

| accepted

Answered
Update the GUI handles structure from inside a callback function
After you make your changes to handles you have to update it with GUIDATA; function my_Callback(hObject, eventdata, handles...

12 years ago | 1

Answered
Save a figure with two plots
Your code is just saving the current axes, you want; hfig = figure; hplot = plot(price,supply,price,demand) saveas(hf...

12 years ago | 1

| accepted

Answered
Blob Analysis - Subtract Large Blobs from Image (Keeping Small Blobs) to create a mask image
You can run "bwconncomp()" to segment the binary image into chunks, then get the size of the chunks with "regionprops()". One of...

12 years ago | 0

Answered
Simple question for GUI
You'll need to know the tag of the pushbutton if you're using GUIDE, you can double click to open the properties and find it the...

12 years ago | 0

Answered
comparing matices that contain numbers and NaNs
My guess from searching the help docs for 'cell' gives; m = cell2mat(c) converts a multidimensional cell array c with content...

12 years ago | 0

Answered
How to make a symmetric plot with surf?
What do you mean by symmetric? Can you post an image? Also, the surf function will allow you to use a custom color value for th...

12 years ago | 0

Answered
A challenging question:merging excel files under a specific pattern
Sure, use xlsread to load the data, operate on it and use xlswrite to write the file back. For example, something like; xlf...

12 years ago | 0

| accepted

Answered
Opening stored figures directly in GUI
You could transfer the data over reasonably fast with something like; % Example of transfering data from one figure to anot...

12 years ago | 1

Submitted


Quick 3D Data Viewer
Small GUI for viewing 3D data with alpha mapping

12 years ago | 3 downloads |

Thumbnail