Save a file with own extension in menu GUI

1 回表示 (過去 30 日間)
Fiboehh
Fiboehh 2011 年 4 月 30 日
Hey, my program generates a ascii file and i need a save function that can save this file with a name chosen by the user and the extension of the ascii file is always .sin. The user must see a foldermenu (window) where all the files in are viseble.
filemenufcn(gcbf,'FileSaveAs')
doesnt give the right exentension
and
filemenufcn(gcbf,'FileSaveAs','*.sin')
doesnt work either. Thx in advance.

採用された回答

dm
dm 2011 年 5 月 1 日
Something like this?
[filename pathname] = uiputfile('*.sin','Save file as');
save(fullfile(pathname,filename),'varname','-ascii')
% or exchange last line with one of the following:
% save(fullfile(pathname,filename),'varname','-ascii','-tabs')
% save(fullfile(pathname,filename),'varname','-ascii','-double')
% save(fullfile(pathname,filename),'varname','-ascii','-double','-tabs')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by