Error using textscan Invalid file identifier Use fopen to generate a valid file identifier in app designer
Mostrar comentarios más antiguos
I use a button to upload my "Data.txt" file and another button to calculate and plot it into UIaxes but im having error in "fid=fopen"
properties (Access = public)
selectpath='';
end
% Callbacks that handle component events
methods (Access = private)
% Button pushed function: UploadButton
function UploadButtonPushed(app, event)
[file,path] = uigetfile('*.txt')
end
% Button pushed function: CalculateButton
function CalculateButtonPushed(app, event)
fid=fopen(Data.txt(app.selectpath));
fclose(fid); %Error using textscan
% Invalid file identifier.
% Use fopen to generate a valid file identifier.
seek=textscan(fid,'%f %f','headerlines',2);
g = cell2mat(seek);
x=g(:,1);
y=g(:,2);
[sortedX, sortIndex] = sort(x);
sortedY = y(sortIndex);
sortedXLimit = sortedX(1:160,:);
sortedYLimit = sortedY(1:160,:);
plot(app.UIAxes,value*peaks) %for the graph
app.UIAxes.YLim = [0 205];
5 comentarios
darova
el 29 de Abr. de 2020
I don't understand

Can you explain?
sydney salvador
el 30 de Abr. de 2020
sydney salvador
el 30 de Abr. de 2020
darova
el 30 de Abr. de 2020
Try this

sydney salvador
el 30 de Abr. de 2020
Respuesta aceptada
Más respuestas (1)
sydney salvador
el 1 de Mayo de 2020
2 comentarios
Tommy
el 1 de Mayo de 2020
At this point I'd recommend you open a new question. If you do so, post a link here and I'd be more than happy to take a look!
sydney salvador
el 1 de Mayo de 2020
Categorías
Más información sobre Data Import and Export en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!