Assigning Input String To Meet Criteria

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

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!

2 Comments

Thanks so much it worked like a charm!
As always, my pleasure!

Sign in to comment.

More Answers (0)

Categories

Find more on Number games 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!