필터 지우기
필터 지우기

How to load .fis file in matlab gui ?

조회 수: 4 (최근 30일)
Iqra Rizvi
Iqra Rizvi 2017년 6월 18일
답변: Walter Roberson 2017년 6월 18일
My project is based on fuzzy logic image processing. The problem I'm getting is I'm not able to load .fis file into matlab GUI. I'm attaching the images of errors so it will be easy to understand my query Thank You in advance
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 6월 18일
It is a bit difficult to see from the images, but it looks to me as if somehow you introduced a function named "edit" that is conflicting with MATLAB's own internal "edit" function.
Iqra Rizvi
Iqra Rizvi 2017년 6월 18일
I have edited the pictures ... Please can you help me out

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2017년 6월 18일
You have your own edit.m that is interfering with MATLAB's edit routine.
MATLAB has three routines named edit (and possibly some class methods as well):
toolbox/matlab/codetools/edit.m
toolbox/matlab/graph2d/@axischild/edit.m % axischild method
toolbox/sl3d/sl3d/@vrworld/edit.m % vrworld method
None of those use hObject anywhere in the source. The second of them does not even have 61 lines at all.
Use
which edit
to locate the edit you have introduced, and rename it, or adjust your MATLAB path so that it will not be called by mistake.

카테고리

Help CenterFile Exchange에서 Fuzzy Inference System Modeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by