I trying to make a Matlab code with my favorite game. Help me.
Ältere Kommentare anzeigen
I want to a make matlab code with this game. It on the youtube link. I work on it but I'm stop at some problems.
clc
clear all
%My_card_deck_1
card_shuffled= randperm(10);
My_card_1= card_shuffled(1);
A= My_card_1;
%My_card_deck_2
B= "My_secret_card";
%My_hand_card
[A B]
This is what I did. Help me to finish the code.
3 Kommentare
Geoff Hayes
am 27 Mai 2022
@gogogo - without looking at the YouTube video, can you describe what the game is supposed to do and how your code fulfills the requirements?
gogogo
am 30 Mai 2022
Walter Roberson
am 30 Mai 2022
cards = randperm(52,2)
value = mod(cards-1,13)+1
First 13 are one suit, next are another, and so on
Antworten (0)
Kategorien
Mehr zu Number games finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!