Gensurf / Axis Limitations

4 views (last 30 days)
Fatih Yigit
Fatih Yigit on 9 Jul 2022
Commented: Fatih Yigit on 10 Jul 2022
Hello everyone;
I am using Fuzzy Toolbox. When I want to see the figure that represents the surface, relevant surface generated by the following code limits the z axis narrower than my output. e.g [0 2] şnstead of [0 5].
zlim [0 5] doesn't work for gensurf.
Would you please help?
Thanks in advance.
++
clc
clear all
close all
a = readfis('InventoryManagementv2');
SafetyStockOutput = evalfis(a, [1 1 0.85])
f= gensurf(a);
++

Accepted Answer

Sam Chak
Sam Chak on 10 Jul 2022
This should do the trick that you desire:
fis = readfis('InventoryManagementv2');
[X, Y, Z] = gensurf(fis);
surf(X, Y, Z)
zlim([0 5])

More Answers (1)

Simon Chan
Simon Chan on 9 Jul 2022
Try this:
set(gca,'ZLim',[0 5])
or
zlim([0 5]); % with bracket

Categories

Find more on Fuzzy Logic Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!