Chris - MATLAB Central
photo

Chris


2011 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 11/11 to 04/25Use left and right arrows to move selectionFrom 11/11Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

10 質問
1 回答

ランク
23,740
of 298,180

評判
1

コントリビューション
10 質問
1 回答

回答採用率
100.0%

獲得投票数
1

ランク
 of 20,546

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 160,541

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


Splitting into function files
clear clc fid = fopen('hangman.txt','r'); if fid < 0, error('Cannot open file'); end data = textscan(fid,'%...

13年以上 前 | 4 件の回答 | 0

4

回答

質問


display+string
clear clc fid = fopen('hangman.txt','r'); if fid < 0, error('Cannot open file'); end data = textscan(fid,'%s'); da...

13年以上 前 | 1 件の回答 | 0

1

回答

質問


strings, while loop help
clear; clc; fid = fopen('hangman.txt','r'); if fid < 0, error('Cannot open file'); end data = textscan(fid,'%s'); data =...

13年以上 前 | 2 件の回答 | 0

2

回答

質問


String and display help
clear all clc fid = fopen('hangman.txt', 'r'); if fid < 0, error('Cannot open file.'); end CC = textscan(fid, '%s'); C ...

13年以上 前 | 2 件の回答 | 1

2

回答

質問


String help!?
fid = fopen('hangman.txt', 'r'); if fid < 0, error('Cannot open file.'); end CC = textscan(fid, '%s'); C = CC{1}; fclose(...

13年以上 前 | 2 件の回答 | 0

2

回答

質問


String function
Trying to get the program to display if the letter is in the word. And word = any word fid = fopen('hangman.txt', 'r'); ...

13年以上 前 | 1 件の回答 | 0

1

回答

質問


display help
I'm trying to create a program that plays a hangman game. So, how would I go about replacing the letters in the word with asteri...

13年以上 前 | 1 件の回答 | 0

1

回答

質問


Hangman game help
Quick briefing. I'm trying to create a program that will simulate a hangman game. My professor already gave me a list of words ...

13年以上 前 | 1 件の回答 | 0

1

回答

質問


Random function from a text file?
Basically, I have a text file with a bunch of words on it. I'm not sure how I can use MATLAB to randomly select one word.

13年以上 前 | 2 件の回答 | 0

2

回答

回答済み
Index exceeds matrix dimensions
Thanks for the advice guys.

13年以上 前 | 0

質問


Index exceeds matrix dimensions
clear clc count_eight=0; clear clc count_eight=0; RandStream.setDefaultStream = (RandStream('mt19937ar...

13年以上 前 | 3 件の回答 | 0

3

回答