winopen command in linux

조회 수: 5 (최근 30일)
Ham Man
Ham Man 2020년 11월 15일
편집: Ameer Hamza 2020년 11월 15일
what is the alternative for 'winopen' command in Linux?

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 11월 15일
If you can open it from the command line, then you can use system() function: https://www.mathworks.com/help/releases/R2020b/matlab/ref/system.html to open it programmatically.
  댓글 수: 2
Ham Man
Ham Man 2020년 11월 15일
Thank you so much Ameer!
I'm using .avi video format in windows programing. Do you know what format should I use in Linux?
This is not working in Linux:
system('open myvideo.avi');
Ameer Hamza
Ameer Hamza 2020년 11월 15일
편집: Ameer Hamza 2020년 11월 15일
I currently don't have access to a linux machine but on macOS, both of these work
system('/Applications/VLC.app/Contents/MacOS/VLC /path_to_video_file &')
% or
system('/usr/bin/open /path_to_video_file &')
Do you have a command-line tool 'open' installed on your Linux? If yes, give the complete path to the executable, system() does not load the $PATH. In case you don't have an 'open' tool, you may find this helpful: https://stackoverflow.com/questions/264395/linux-equivalent-of-the-mac-os-x-open-command.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by