回答済み
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...

12年弱 前 | 0

| 採用済み

回答済み
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...

12年弱 前 | 0

回答済み
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年弱 前 | 0

| 採用済み

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 1

| 採用済み

回答済み
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年 前 | 0

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 1

回答済み
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年 前 | 1

| 採用済み

回答済み
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年 前 | 0

回答済み
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年 前 | 0

回答済み
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年 前 | 0

回答済み
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年 前 | 0

回答済み
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年 前 | 0

| 採用済み

回答済み
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年 前 | 1

送信済み


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

約12年 前 | ダウンロード 1 件 |

Thumbnail