Write a function called WordProduct to calculate the alphabetic word product of a character vector.

조회 수: 2 (최근 30일)
Please can you help me about this question... It is really important to me.
Write a function called WordProduct to calculate the alphabetic word product of a character vector. The input will be a character vector consisting of upper and lower case characters, and could be of any length. The alphabetic word product is the product of a number based on the correspondence to letters and is independent of the case of the letter, such as a=1, b=2, ... z=26. Ex: If the character vector is 'aBc', the word product is 6. Restrictions: The function may not use loops, and should make use of the function prod.

답변 (1개)

James Tursa
James Tursa 2018년 12월 21일
Hints to get you started:
  • Look at the upper( ) and lower( ) functions
  • What happens if you subract 'a' or 'A' from your vector?

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by