🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

how to throw the last module's parameters to the next module's parameters

User: "joe"
New Altair Community Member
Updated by Jocelyn
Dear sir
If i want to combine two or more modes.(for example K-Medoids、Flatten Clustering....)
I want to  throw the last  module's parameters  to the next  module's parameters?(the  parameter of K in the model of K-Medoids  give  to the  parameter of number of clusters in the model of Flatten Clustering) ???
How may I  do?(can show simple workflow)
I need your help.
please help me.
thank a lot

the following is my try.
http://photo.xuite.net/chinchaowei/5338584/1.jpg
http://photo.xuite.net/chinchaowei/5338584/2.jpg

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "MariusHelf"
    New Altair Community Member
    Hey Joe,

    the Clone Parameters operator only works for identical operators (e.g. copy the parameters of one K-Means operator to another K-Means operator). Anyway, you are using k-Medoids which does NOT create a hierarchical clustering, and thus you don't need the Flatten Clustering operator at all. You can also see in your process setup that something is wrong by the red input port at the operator and by looking at Problems View below.

    Anyway, to use the same parameter value at several places in your process, you can use macros. They work like gloal process variables. Set them via the Set Macro operator. Say you create a macro named number_of_clusters and value 5. Then you can use it as k in k-Medoids by entering the following into the k-parameter field in k-Medoids:
    %{number_of_clusters}
    Kind regards,
    Marius