필터 지우기
필터 지우기

How do I get ply file imports using App designer

조회 수: 1 (최근 30일)
Dhruv
Dhruv 2023년 10월 17일
편집: dpb 2023년 10월 18일
The app that I am building requires a ply file to be imported. But, when I click 'all files' on the finder, it still grays out the ply files. How would I allow ply files to be imported into the app?

답변 (1개)

dpb
dpb 2023년 10월 17일
편집: dpb 2023년 10월 18일
% Button pushed function: Button
function ButtonPushed(app, event)
[f,d]=uigetfile('*.ply','Get PLY File');
disp(fullfile(d,f))
end
works just fine here in a minimal app, even if I set hidden attribute on the .ply file I downloaded for the purpose the file is shown in the selection list.
Well, let's see just for grins...no, there's no difference in the behavior if use '*.* for the wildcard pattern.
We'd have to see your actual code to see if could spot anything amiss...
Oh. Which OS/version and MATLAB release?

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by