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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 1

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 1

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

fast 12 Jahre vor | 1

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 1

Gesendet


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

fast 12 Jahre vor | 3 Downloads |

Thumbnail