필터 지우기
필터 지우기

Acessing fields of a structure

조회 수: 1 (최근 30일)
José Pereira
José Pereira 2017년 12월 7일
편집: James Tursa 2017년 12월 7일
Hi I have a structure called 'users' with 2 fields: username and password. If i know the username how can i have access to the corresponding password?

답변 (2개)

Star Strider
Star Strider 2017년 12월 7일
I would use the strcmp function for the name comparison:
users.username = {'Name_1', 'Name_2'}; % Create Structure
users.password = {'password_1', 'password_2'}; % Create Structure
Lidx = strcmp(users.username, 'Name_2'); % Return ‘Logical Index’
PW = users.password(Lidx)
PW =
1×1 cell array
{'password_2'}

James Tursa
James Tursa 2017년 12월 7일
편집: James Tursa 2017년 12월 7일
Assuming your struct is multi-element, with each element having a username and a password. One way, which first converts the username fields into a cell array that can be fed into strcmp:
username = whatever;
password = users(strcmp({users.username},username)).password;
This assumes that username is actually present in the struct exactly once. If that may not be the case, then you would need to add in logic to test the result of the strcmp first.
This also converts the username fields to a cell array first. That carries a performance penalty. If you were doing this for many user names using the same struct, then consider doing that conversion only once at the front instead of multiple times.

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by