Feeds
提问
How to do a code optimization for data export/import to uielements
I have a gui with a uitable with a maximum of 30 rows and 30 edit-boxes. I what 2 specific things. 1) Export the cell array with...
6 years 前 | 0 个回答 | 0
0
个回答提问
Export report to PDF in matlab GUIDE
I have created a GUI where I want the final step to be a pushbutton which generates a report from a table array (CompleteCellArr...
6 years 前 | 0 个回答 | 0
0
个回答提问
extract numbers from cell array and calculate mean
I have a cell array containing numbers and strings. Can someone help me with a code that can calculate the mean of the numbers i...
6 years 前 | 1 个回答 | 0
1
个回答提问
Effective way to convert/create matrix from mixed cell/string
I have a cell array like the one below and I need a fast and effective way to 1) remove the empty columns, 2) convert the cells ...
6 years 前 | 1 个回答 | 0
1
个回答提问
microplateplot in matlab r2015b GUI
I have a matrix called data, see below, which I can plot in a microplateplot(microplot) from the command window, but when I want...
6 years 前 | 1 个回答 | 0
1
个回答提问
replace number with string in uitable
I have a very simple code in my gui where I want X and Y values to appear in a uitable. I want the last column to be editable so...
6 years 前 | 1 个回答 | 0
1
个回答提问
Code optimization for plot visibility by several checkmark selections
Hi guys I have a code which is working fine. But I think the code is a bit clumsy. I have made a plotting GUI with 1-90 checkma...
6 years 前 | 0 个回答 | 0
0
个回答提问
Fill std error for one curve
I have this (X,Y) dataset and I want to plot with the std.error marked as shading. However, I have have problem when the std is ...
6 years 前 | 2 个回答 | 0
2
个回答提问
Use string to define path for uigetfile
I am trying to use a string to define the path for uigetfile in matlab GUI. But I can't get it to work. The uigetfile does not u...
6 years 前 | 2 个回答 | 0
2
个回答提问
Normalization of ui.table rows upon proportinal resize behavior
I need some help with a GUI made by GUIDE. I did the GUI on a pc with resolution 1600x900. Now I need to be able to use the GU...
6 years 前 | 1 个回答 | 0
1
个回答提问
xlswrite with formula in loop function
I have a large cell (2500,3) array which I want to export as a .xls file, but I want to include a formula ('=SUM(B1:C1)') which ...
7 years 前 | 2 个回答 | 0
2
个回答提问
Move line in legend
I have a cell array with four strings which is used as legend for four individual X,Y plots. One string is very long and therefo...
7 years 前 | 1 个回答 | 0
1
个回答提问
Split legend after blank space
I know this has been discussed several times before, but I still cannot figure it out. I have a 4x1 cell with stings I want to...
7 years 前 | 2 个回答 | 0
2
个回答提问
String selection from Matrix data
Hi guys. I need a little help from you Matlab experts. I have a cell array (Names) with a list of 14 different names. Then I ...
7 years 前 | 1 个回答 | 0
1
个回答提问
extract user defined data from matrix in GUI
This might be a simple question but I still need some help to sort this out. I have Dataset and from this the user defines whi...
7 years 前 | 1 个回答 | 0
1
个回答提问
Smarter code for multiple pushbutton selection
I'm writing a GUI where I can control plot color by pushbutton and uisetcolor() which also color the pushbutton and handle (stor...
7 years 前 | 1 个回答 | 0
1
个回答提问
Continuous updating of GUI plotting
I am preparing a gui where the visibility of plots are controlled by checkbox selection in two different axes. Additionally, the...
7 years 前 | 0 个回答 | 0
0
个回答提问
Individual handles for each plot in a loop
I am preparing a GUI where I want to plot 2-30 different plots in a axes, and I want to add a number to each plot inside a loop ...
7 years 前 | 1 个回答 | 0
1
个回答提问
Visibility of several plot in the same axes by checkmark in GUI
I'm preparing a gui with 2-30 plots where the visibility is controlled by individual checkmark selections. The code is working p...
7 years 前 | 1 个回答 | 1
1
个回答提问
Plot visibility by checkmark in GUI
I have from 2-30 plots where I want to control the visibility by checkmark selection in a GUI (Guide). But I can't get it to wor...
7 years 前 | 1 个回答 | 0
1
个回答提问
Rename titles of sheets for xlswrite
I need a bit of help to rename my tabels for xlswrite. I try to use the below code which work as long as the title names are dif...
7 years 前 | 1 个回答 | 0
1
个回答提问
unable to store variable in Matlab Gui
I know several variants of this issue have been discussed elsewhere, but I am still unable to solve the problem. Please help. ...
7 years 前 | 1 个回答 | 0
1
个回答提问
Replot a matlab.graphics.chart
I have a simple issue that I could use some help with. I am preparing a loop where each cycle saves a plot in a matlab.graphics....
7 years 前 | 3 个回答 | 0
3
个回答提问
Multiple plot controlled by the same popupmenu in GUI
I have this code, where I have a popupmenu for the user to decide the type of plot to be displayed in axes 1 and 2. The plots sh...
7 years 前 | 1 个回答 | 0
1
个回答提问
Refresh value in checkbox upon popmenu
The data I have is called in the "checkbox1" as "fulldata" where I have the X and Y values located in a data matrix: Code: ...
7 years 前 | 1 个回答 | 0
1
个回答提问
How to delete a substring within a string
I have a string like this a={ {'a', 'b', 'c','d'},{''}, {'e', 'f', 'g', 'h'},{''} } where the two '' are empty {1x1 cel...
7 years 前 | 1 个回答 | 0
1
个回答提问
delete empty cells of data array
This might be vary basic but I still need a bit of help to figure this out. I have a relatively large cell array data={411...
7 years 前 | 2 个回答 | 0
2
个回答提问
xlswrite many data arrays into excel
Please help, i am new to matlab GUI coding. I have many dataarray such as set1={'year' 'date' 'day' 'time'; '2017' '0803'...
7 years 前 | 1 个回答 | 0
1
个回答提问
Plot legend upon checkbox activation in GUI
I am new to matlab gui and working on my first program. I have ~10 datasets that I need to plot , but only when activated by a c...
7 years 前 | 1 个回答 | 0
1
个回答提问
replace comma with dot in large array
Please help, I'm new to matlab coding. I have a array like this data={'250,1000' '-6,52796' '322,683' '1,50367'...
7 years 前 | 2 个回答 | 0