Gensurf / Axis Limitations

3 ビュー (過去 30 日間)
Fatih Yigit
Fatih Yigit 2022 年 7 月 9 日
コメント済み: Fatih Yigit 2022 年 7 月 10 日
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);
++

採用された回答

Sam Chak
Sam Chak 2022 年 7 月 10 日
This should do the trick that you desire:
fis = readfis('InventoryManagementv2');
[X, Y, Z] = gensurf(fis);
surf(X, Y, Z)
zlim([0 5])
  1 件のコメント
Fatih Yigit
Fatih Yigit 2022 年 7 月 10 日
Thanks a lot. It workedç

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

その他の回答 (1 件)

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

カテゴリ

Help Center および File ExchangeFuzzy Logic Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by