How to Apply Fuzzy TOPSIS on Array of Data stored in Excel File
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I execute FUZZY TOPSIS in MATLAB using creteria metrix entered in an excel file?
Thank you
0 comentarios
Respuestas (1)
Walter Roberson
el 25 de Mzo. de 2025
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 comentarios
Ver también
Categorías
Más información sobre Fuzzy Logic Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!