Statistics
33 Questions
0 Answers
RANK
172,062
of 295,448
REPUTATION
0
CONTRIBUTIONS
33 Questions
0 Answers
ANSWER ACCEPTANCE
60.61%
VOTES RECEIVED
1
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How do I convert my .m file into a .exe file?
I do NOT have license compiler. I have some .m file i need some one to test on there computer and i am not sure if they hav...
11 years ago | 3 answers | 1
3
answersQuestion
How do you write a .csv file into excel without carrying along the commas with it?
Here is my code to read and write the .csv file: %---------------------------------------------------------------------------...
11 years ago | 1 answer | 0
1
answerQuestion
Is it possible to configure data in a excel file from matlab? If so, How can I do it?
for example, I have an excel file with data in it, i would like to delete the first 5 rows in the first 14 columns. Also inst...
11 years ago | 3 answers | 0
3
answersQuestion
How to read a .csv file in matlab?
my .csv file opens in excel and every row is in the form: 2013 *|* 094 *|* 22:57:13 *|* 2456387.456 *|* 5.002 *|* 0.006 *|* 4...
11 years ago | 1 answer | 0
1
answerQuestion
How do you edit a table that has already been set?
I created a GUI using GUIDE, the GUI consists of a (7x3)table and a pushbutton. The pushbutton does some calculations when pushe...
11 years ago | 0 answers | 0
0
answersQuestion
How do you display calculated values in uitable without using set(handles.uitable,'data',value)?
I created a GUI using GUIDE that consists of a 7X3 table (uitable1) and a pushbutton (Calculate). The pushbutton places 7 calcul...
11 years ago | 1 answer | 0
1
answerQuestion
In matlab uitables, Is it possible to add the data in each row together to get its summation? If so, how can i do it?
I created the table using guide. i have a 7x3 table and four each row i would like to add the data in the first 2 columns so ...
11 years ago | 1 answer | 0
1
answerQuestion
How do you transfer numeric data between 2 tables in 2 different GUI's?
GUI1 has table1 and GUI2 has table2. table2 has editable cells which enable the user to type numeric data in the cells. I would ...
11 years ago | 0 answers | 0
0
answersQuestion
How can i make a dynamic GUI in Guide?
I am having issues making my GUI dynamic. Currently, I can resize my GUI; however, when i make the GUI bigger the tables in the ...
11 years ago | 2 answers | 0
2
answersQuestion
How do you transfer numeric data to an excel file?
The following code is what i used to try to transfer data from the file *passReport.EO1_2013_107_193146* to the excel file *EO1_...
11 years ago | 1 answer | 0
1
answerQuestion
creat a excel file from matlab
I have data that I want to put in a excel file from matlab. the data is coming from a text file that I read in using textscan, h...
11 years ago | 2 answers | 0
2
answersQuestion
How do you enable a GUI to adjust to fit screens of varying resolution
I created a GUI in Guide and I want my GUI to adjust to fit screens of different varying resolution, because my application will...
11 years ago | 2 answers | 0
2
answersQuestion
Why is GUIDE not allowing me to have one (1) column and three (3) rows in my table? It seems as if the default table is 4 x 2
Is there away i can get a 3x1 table thanks in advance, Cordelle
11 years ago | 3 answers | 0
3
answersQuestion
sharing data between two gui's
I basically have one main GUI that is calling for a smaller GUI which simply contains a table and a push button. What I want to ...
11 years ago | 0 answers | 0
0
answersQuestion
How do you get the handles of a table from another GUI?
I have two GUI's, we can call them GUI A and GUI B. In GUI B i would like to call for the handles of a table in GUI A. We can ca...
11 years ago | 1 answer | 0
1
answerQuestion
How do tranfer data from one GUI uitable to another GUI uitable?
I have two seperate GUI's with uitable 1 in the first GUI and uitable2 in the second GUI. After the user types all of the data i...
11 years ago | 1 answer | 0
1
answerQuestion
how to convert a .txt file into a .xls file in matlab?
I suspect that I can actually read the log file data directly into Matlab without conversion. It is just a comma separated vari...
11 years ago | 3 answers | 0
3
answersQuestion
How do you enable a user to maximize an axes on a matlab GUI?
Maximize a graph like you would maximize a windows application. I used guide to make the GUI. thanks in advance, Cordelle...
11 years ago | 2 answers | 0
2
answersQuestion
What does this error message mean?
Undefined function or variable 'fcn'. Error in tabpanelcopyfcn (line 40) switch fcn
11 years ago | 1 answer | 0
1
answerQuestion
How do i allow the user to add additional tabs to my matlab GUI if they please too? Like how a individual would add a tab in excel
Hi, Currently I have a main gui with various GUI controls on it to do calculations. Is it possible to make GUI with tabs( sim...
11 years ago | 1 answer | 0
1
answerQuestion
How do you enable a slider to scroll an entire panel?
So far, I have only succeeded in scrolling the contents in the panel. However, I want the whole panel to scroll along with the c...
11 years ago | 3 answers | 0
3
answersQuestion
Is it possible to enable a slider to scroll subpanels up and down?
My GUI has an add button that allows the user to add additional subpanels when desired. Being that eventually the length of the ...
11 years ago | 1 answer | 0
1
answerQuestion
Sliders in Matlab GUI
I am trying to enable my slider to scroll up and down the GUI window. The code is below if you dont mine running it you'll see t...
11 years ago | 1 answer | 0
1
answerQuestion
How do you create a push button that saves data from a GUI?
Basically, I just want to give the user the option to save the numerical data that are in the cells of a table on my GUI
11 years ago | 1 answer | 0
1
answerQuestion
How do you connect to a remote machine in MatLAB?
I need be able to communicate with a remote machine. Like send data between machines and etc. Basically, I would like to transfe...
11 years ago | 1 answer | 0
1
answerQuestion
How do you allow the USER to edit a table in a matlab GUI?
editing tables on the Interface
11 years ago | 1 answer | 0
1
answerQuestion
Is it possible to construct the code below?
% --- Executes on button press in Calculate. function Calculate_Callback(~, ~, handles) % hObject handle to ...
11 years ago | 1 answer | 0
1
answerQuestion
Is it possible to convert a word documenet to an .xls file using matlab code? If so, can you help or refer me to a link that will help me do that
Convert a microsoft word document to an excel document using matlab code
11 years ago | 2 answers | 0
2
answersQuestion
How do you place values in the cells of a empty table on a GUI?
I made GUI with a calculate button and a table; I want the results from the calculations to appear on the table. I would gladly ...
11 years ago | 1 answer | 0
1
answerQuestion
How do you share a variable from another function to be used in a different function?
function Browse1_Callback(~, ~, handles) % hObject handle to Browse1 (see GCBO) % eventdata reserved - to be...
11 years ago | 1 answer | 0