Effacer les filtres
Effacer les filtres

Building a survey GUI that records the answers of different study participants

25 vues (au cours des 30 derniers jours)
Shaunak
Shaunak le 29 Juin 2024 à 17:41
Commenté : Shaunak le 10 Juil 2024 à 20:02
Hello everyone,
I'm pretty new to MATLAB and was hoping if I could get some advice. I'm trying to build a MATLAB GUI for a study where I want the participants to listen to multiple audio files and give ratings for each (by slider values). I plan on deploying a web app and making it available on the Web Server so that pariticipants (that don't have MATLAB) can access a link and send in their anonymous responses. I would like these responses to be saved in an excel sheet for all participants for analysis later.
I haven't reached the deployment stage of this GUI (currently waiting on a license for Web Server access), but I was wondering if anyone had any suggestions when it comes to building a participant survery in MATLAB. Additionally, if anyone has an pariticipant survey scripts that already do that, I would really appreciate it if you could share it with me!

Réponse acceptée

Ishaan Mehta
Ishaan Mehta le 3 Juil 2024 à 6:21
Hi Shaunak,
Creating a GUI for your application using MATLAB App Desinger should be a straight-forward process, using the UI components such as "Button" and "Slider", and employing their callback functions to execute relevant code.
I will try to give you a few pointers on the available MATLAB functions that could be of help in implementing this use-case:
1. You can use the "audioread" and "sound" functions to read an audio file and play it, as explained in the documentation below:
2. Ideally, you should save the survey responses in a "struct" object with fields {"participant_name", "audio1_rating", "audio2_rating", "audio3_rating"}, assuming you have 3 audio files to rate.
Then you can append the struct result for the current participant in an existing table of all the ratings received. The "struct2table" function can help with converting "struct" to a "table" which can then be appended to an existing table.
Same is illustrtated in the code snippet below:
% Button pushed function: SubmitButton
function SubmitButtonPushed(app, event)
% Collect the ratings and participant name
app.Ratings.participant_name = app.ParticipantName.Value;
app.Ratings.audio1_rating = app.RatingSlider1.Value;
app.Ratings.audio2_rating = app.RatingSlider2.Value;
app.Ratings.audio3_rating = app.RatingSlider3.Value;
% Convert struct to table
newEntry = struct2table(app.Ratings);
% Append to existing table
if isempty(app.RatingsTable)
app.RatingsTable = newEntry;
else
app.RatingsTable = [app.RatingsTable; newEntry];
end
% Save to Excel file
writetable(app.RatingsTable, 'SurveyResponses.xlsx');
end
This can be appended/modified with any other implementation to save the results in an online location, such as a REST server.
3. If you wish to send the response data to a REST server thorugh a POST request, the "webwrite" function can be helpful for the same.
I hope these pointers help you get started!
  1 commentaire
Shaunak
Shaunak le 10 Juil 2024 à 20:02
Hey Ishaan,
Sorry for getting back to you so late, I've been travelling a lot. Thank you so much for this detailed explanation. In terms of saving responses, I was thinking about using MATLAB Web Server for the Web app deployment. Do you have any specific scripts or references I can look into for setting that up? Ideally, I would like to send a link for people around the work to access the GUI and save all the responses in the Web Server space.

Connectez-vous pour commenter.

Plus de réponses (1)

Umar
Umar le 30 Juin 2024 à 4:04
Hi Shaunak,
To answer your question, you can utilize the App Designer tool for a user-friendly interface. You can incorporate audio playback features and slider components for rating inputs. When deploying as a web app, consider using MATLAB Web App Server for hosting. To save responses to an Excel sheet, use MATLAB's writetable function to store participant data efficiently.
Here's a basic example to get you started:
% Sample code for saving participant responses to an Excel file
data = {'Participant 1', 'Rating 1'; 'Participant 2', 'Rating 2'};
T = cell2table(data, 'VariableNames', {'Participant', 'Rating'});
writetable(T, 'ParticipantResponses.xlsx');
Hope this will get you started.
  3 commentaires
Umar
Umar le 6 Juil 2024 à 23:36
Hi Shaunak,
There are open-source alternatives available that offer similar functionalities. One popular open-source option is GUIDE (Graphical User Interface Development Environment), which is a part of Matlab itself and provides a more traditional approach to creating GUIs compared to App Designer.
For more information regarding GUIDE, please refer to
http://www.ece.northwestern.edu/local-apps/matlabhelp/techdoc/creating_guis/devel_e2.html
Another notable open-source alternative is Qt Designer, which is part of the Qt framework. Qt Designer allows you to design GUIs visually and then export the UI to be used with various programming languages, including Python and C++. It offers a wide range of widgets and features for creating interactive applications.
For more information regarding Qt, please refer to https://doc.qt.io/qt-6/qtdesigner-manual.html
Now, if you prefer working with Python, Tkinter is a built-in GUI toolkit that comes with Python and allows you to create simple GUI applications. While Tkinter may not offer as many advanced features as Matlab's App Designer, it is a good option for basic GUI development.
For more information regarding tainted, please refer to https://docs.python.org/3/library/tkinter.html
Let me know if you still need further assistance or help.
Shaunak
Shaunak le 10 Juil 2024 à 19:59
Got it, thank you for providing the different alternatives!

Connectez-vous pour commenter.

Catégories

En savoir plus sur MATLAB Web App Server dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by