ArcGIS for Desktop

  • Dokumentation
  • Preise
  • Support

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS for Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS for Desktop

Ein vollständiges professionelles GIS

ArcGIS for Server

GIS in Ihrem Unternehmen

ArcGIS for Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Preise
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

Help

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Mehr...

FuzzyMSSmall

Mit der Spatial Analyst-Lizenz verfügbar.

  • Zusammenfassung
  • Diskussion
  • Syntax
  • Eigenschaften
  • Codebeispiel

Zusammenfassung

Defines a fuzzy membership through a function based on the mean and standard deviation, with the smaller values having a membership closer to 1.

Diskussion

The tool that uses the FuzzyMSSmall object: Fuzzy Membership.

There are two equations for the MS Small function, depending on the product of a * m.

  • If x > a * m:

    u(x) = (b * s) / (x - (a * m) + (b * s))

    • where:

      m = the mean

      s = the standard deviation

      a = a multiplier of the mean

      b = a multiplier of the standard deviation

      The a and b multipliers are input parameters.

  • If x <= a * m:

    u(x) = 0

The MSSmall function is useful when the small input values have a higher membership.

The input values can be either integer or floating point positive values.

The result can be similar to the Small fuzzy membership function, depending on how the multipliers of the mean and standard deviation are defined.

Syntax

 FuzzyMSSmall (meanMultiplier, STDMultiplier)
ParameterErläuterungDatentyp
meanMultiplier

The multiplier for the mean of the input values in the MSLarge function equation.

(Der Standardwert ist 1)

Double
STDMultiplier

The multiplier for the standard deviation of the input values in the MSLarge function equation.

(Der Standardwert ist 1)

Double

Eigenschaften

EigenschaftErläuterungDatentyp
meanMultiplier
(Lesen und schreiben)

The multiplier for the mean of the input values in the membership function equation.

Double
STDMultiplier
(Lesen und schreiben)

The multiplier for the standard deviation of the input values in the membership function equation.

Double

Codebeispiel

FuzzyMSSmall example 1 (Python window)

Demonstrates how to create a FuzzyMSSmall class and use it in the FuzzyMembership tool within the Python window.

import arcpy
from arcpy.sa import *
from arcpy import env
env.workspace = "c:/sapyexamples/data"
outFzyMember = FuzzyMembership("as_std", FuzzyMSSmall(1.2, 3.2))
outFzyMember.save("c:/sapyexamples/fzymssml")
FuzzyMSSmall example 2 (stand-alone script)

Performs a FuzzyMembership using the FuzzyMSSmall class.

# Name: FuzzyMSSmall_Ex_02.py
# Description: Scales input raster data into values ranging from zero to one
#     indicating the strength of a membership in a set. 
# Requirements: Spatial Analyst Extension

# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *

# Set environment settings
env.workspace = "C:/sapyexamples/data"

# Set local variables
inRaster = "as_std"

# Create the FuzzyMSSmall algorithm object
meanMultiply = 1.5
stdMultiply = 1
myFuzzyAlgorithm = FuzzyMSSmall(meanMultiply, stdMultiply)

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute FuzzyMembership
outFuzzyMember = FuzzyMembership(inRaster, myFuzzyAlgorithm)

# Save the output
outFuzzyMember.save("c:/sapyexamples/fzymssml2")

Verwandte Themen

  • An overview of Spatial Analyst classes
  • An overview of fuzzy classes
  • Anwenden von Fuzzy-Logik auf Überlagerungs-Raster
  • Funktionsweise des Werkzeugs "Fuzzy Membership"
  • Funktionsweise des Werkzeugs "Fuzzy Overlay"
Feedback zu diesem Thema?

ArcGIS for Desktop

  • Startseite
  • Dokumentation
  • Preise
  • Support

ArcGIS Plattform

  • ArcGIS Online
  • ArcGIS for Desktop
  • ArcGIS for Server
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Über Esri

  • Über uns
  • Karriere
  • Insider-Blog
  • User Conference
  • Developer Summit
Esri
© Copyright 2016 Environmental Systems Research Institute, Inc. | Datenschutz | Rechtliches