필터 지우기
필터 지우기

Matlab code for function

조회 수: 1 (최근 30일)
Lauren Kinchla
Lauren Kinchla 2019년 11월 21일
댓글: Philippe Lebel 2019년 11월 21일
I need help wiritng a code so get a string of data of letters to be sorted so that vowels are returned in alphabetical order followed by all the non vowels in the string sorted in alphabetical order
  댓글 수: 3
David Hill
David Hill 2019년 11월 21일
Look at the regexp function or ismember function:
a(regexp(a,'[aeiou]'));
a(ismember(a,['aeiou']));
Philippe Lebel
Philippe Lebel 2019년 11월 21일
look at the past question asked by this user...

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by