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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 1

| accettato

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 1

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

quasi 14 anni fa | 1

| accettato

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

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

quasi 14 anni fa | 0

| accettato

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

quasi 14 anni fa | 1

Inviato


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

quasi 14 anni fa | 1 download |

0.0 / 5
Thumbnail