How to Apply Fuzzy TOPSIS on Array of Data stored in Excel File
2 ビュー (過去 30 日間)
古いコメントを表示
How can I execute FUZZY TOPSIS in MATLAB using creteria metrix entered in an excel file?
Thank you
0 件のコメント
回答 (1 件)
Walter Roberson
2025 年 3 月 25 日
There is no MATLAB toolbox that allows you to apply FUZZY TOPSIS to excel files.
There are only a small number of routines that will deal with excel files directly (besides routines to read and write excel files.) For example it is possible to create data stores directly from xls files... but it is not possible to (for example) directly compute the sum of all of the entries in an xls file.
The key to working with excel files is to first read the data in, and then as a seperate independent step, process the data.
The key ways to read excel files are readtable() and readmatrix() (and the older xlsread())
Once you have read in the data, you run into the problem that MATLAB has no FUZZY TOPSIS available. However, https://github.com/simoG265/FuzzyTopsis has FUZZY TOPSIS matlab code.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fuzzy Logic Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!