Assigning Input String To Meet Criteria

1 view (last 30 days)
So to summarize briefly what i'm doing. I'm making a scripted game for matlab if you know what DnD is, the format would be very similar to that. The purpose for creating the game would be for my own leizure and allowing myself to practice matlab. I'm currently trying to create an istance were the player can choose it's gender but for reasons unknown to me the instancecant select the girl path. So i'm wondering if someone could point out what im doing wrong.

Accepted Answer

Star Strider
Star Strider on 15 Feb 2020
The logical equality does not work with character arrays.
Use strcmp or (strcmpi) instead:
gender = 'boy';
TestLogic = strcmpi(gender, 'boy')
produces:
TestLogic =
logical
1
Good luck with your DnD game!

More Answers (0)

Categories

Find more on Just for fun in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!