New to Matlab and GUI - load and plot data from txt data file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a txt data file,i have made it B matrix of 2 columns and i want this file to load in gui(push button) and then plot these 2 columns (push button 2) how i do this? i managed to load file on gui with following code
[filename, pathname] = uigetfile({'*.txt'},'Open Directory');
if isequal(filename,0) || isequal(pathname,0)
return
2 comentarios
Geoff Hayes
el 29 de Mayo de 2016
George - you will need to post more of your code. Is the above being called from within a callback of your GUI? How are you getting the B matrix of two columns? Please clarify.
Joseph Cheng
el 29 de Mayo de 2016
Editada: Joseph Cheng
el 29 de Mayo de 2016
Your code snippet doesn't load in any file. Here uigetfile just gets the folder and file name you've selected. You'll need to use either dlmread(), csvread(), fopen(), etc. to actually read in the data.
You can read up on those functions and determine whats the one that is best suited for your text file. After you've figured out how to import the file into a variable. I'd suggest looking at the sample guide template "GUI with Axes and Menu" (specifically the pushbutton1 callback).
Respuestas (0)
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!