フィルターのクリア

How do i create a username and password login system that takes multiple accounts

5 ビュー (過去 30 日間)
Andrew Cuaki
Andrew Cuaki 2022 年 2 月 22 日
コメント済み: Andrew Cuaki 2022 年 2 月 23 日
i need to create an app that is a log-in system for multiple people. As of now i can only do one password/username combination. how do i add more
  2 件のコメント
Les Beckham
Les Beckham 2022 年 2 月 22 日
You are more likely to get a good answer for how to update your code if you show the code that you have now.
Andrew Cuaki
Andrew Cuaki 2022 年 2 月 22 日
password = app.PasswordEditField.Value;
passworddef = 'password';
b=length(password); b1=length(passworddef);
username = app.UsernameEditField.Value;
usernamedef = 'EmployeeA';
a=length(username); a1=length(usernamedef);
if(a==a1 && b==b1)
This is all i have so far i tried using the ";" and "or(...)" and "|" but they dont seem to work

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

回答 (1 件)

Benjamin Thompson
Benjamin Thompson 2022 年 2 月 22 日
Use strcmp to compare string contents rather than their lengths. Not that MATLAB is probably not very secure for taking passwords from users and making sure memory is cleared to zero when memory is no longer needed. Or at least, use the hash function and only store passwords as hashed strings.
You can store multiple strings like user names or passwords using cell arrays, like:
>> usernames{1} = "Harry"
usernames =
1×1 cell array
{["Harry"]}
>> usernames{2} = "Sally"
usernames =
1×2 cell array
{["Harry"]} {["Sally"]}

カテゴリ

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