How can I use function to give me a variable from an excel file?

2 ビュー (過去 30 日間)
Claudia Ganhao Gomez
Claudia Ganhao Gomez 2021 年 11 月 18 日
回答済み: Srijith Kasaragod 2021 年 11 月 22 日
I am trying to write a code that using user defined function I can get an answer from an excel file. In other words, I have an excel file that has years in the first column and values in the second, how can I use function for the user to enter a year from 1990 to 2018 and the answer to be whatever variable is assigned to that year from the excel file?
  1 件のコメント
Rik
Rik 2021 年 11 月 18 日
What have you tried so far?
I suspect it will be trivial if you load the data and use ismember.

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

回答 (1 件)

Srijith Kasaragod
Srijith Kasaragod 2021 年 11 月 22 日
Hi Claudia,
Following lines of code shows one of the ways you could solve your problem:
tbl= readtable('excel.xlsx');
%variable year stores the user input
%Year and Answer are the column names of the table
[outa, outb]= ismember(year,tbl.Year);
sol= tbl.Answer(outb);
Please refer 'ismember' documentation to read more on how to verify if certain elements are members of a set array.

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by