Assigning Input String To Meet Criteria

1 次查看(过去 30 天)
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.

采纳的回答

Star Strider
Star Strider 2020-2-15
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!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Just for fun 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by