isalpha

버전 1.0.0 (7.9 KB) 작성자: Anmol Pardeshi
check if variable is alphabet
다운로드 수: 11
업데이트 날짜: 2020/7/9

라이선스 보기

Input: string or char variable ONLY
output: is the variable consists of alphabets only
process: While MATLAB has a function named isnumeric (input = double ; output = if the variable consists of numbers only)
and isletter (input = char ; ouptut = locations where alphabets are present are marked as 1 , else 0) but what if you want to know if the complete variable consists of alphabets only? i.e you do not necessarily want to deal with 1s and 0s on indexs of the variable. What is want to use it in an if condition?

Eg: if student_name=string("Jonas") and you want to know if all such student name entries are alphabets only.
Eg2: if patient_ID=string("Martha_021") and you want to know if the initial part consists of alphabets only and not numbers. This is common mistake in medical field (I have encountered this in huge datasets).

on both the above examples you can write a statement like:
if isalpha(this_name)

else
%throw error
end

인용 양식

Anmol Pardeshi (2025). isalpha (https://kr.mathworks.com/matlabcentral/fileexchange/77966-isalpha), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2020a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0