MATLAB Please write the code for this question.

13 ビュー (過去 30 日間)
수연 김
수연 김 2021 年 3 月 28 日
コメント済み: Walter Roberson 2021 年 3 月 31 日
Write a program to administer a computerized questionnaire on a topic of interest to you. Use a structure data type and allow participants to answer with whole sentences or phrases for at least some items. Save the data in an external file. Record the time to answer each question.
tic
Subject.name=input('What is your name?','s');
Subject.age=input('How old are you?','s');
Subject.hobby=input('What is your hobby?','s');
Subject.favorite=input('What is your favorite food?','s')
subject
toc
I have to use tic-toc.please help me T.T
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 3 月 28 日
You have to record the time to answer each question, so you need a tic/toc around each input() call. And you need to store the value of the toc() call.

サインインしてコメントする。

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2021 年 3 月 30 日
Hi
You can use tic - toc function and store the time into some variable as given below:
tic
Subject.name = input('What is your name?','s');
nameTime = toc;
tic
Subject.age = input('How old are you?','s');
ageTime = toc;
tic
Subject.hobby = input('What is your hobby?','s');
hobbyTime = toc;
tic
Subject.favorite = input('What is your favorite food?','s');
favTime = toc;
Hope it will help!
  3 件のコメント
Mahesh Taparia
Mahesh Taparia 2021 年 3 月 31 日
Yeah, its true.
But he has the code, just need to add tic-toc at correct position.
Walter Roberson
Walter Roberson 2021 年 3 月 31 日
But we can discuss how to do it without giving the complete solution, or by showing a single example that does not directly work so that they would have to understand the ideas rather than copying directly.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by