Parameter Study and AnyDesMeasure vector output?

Hello.
I want to perform a very simple parameter study
using “AnyParamStudy1D”. But unlike the situation described in the
tutorial “Defining a parameter study”
(http://www.anybodytech.com/657.0.html) I don’t want the maximum
value of the output vector. I want the whole vector (ie results from
all time steps for all iterations).
— cut from tutorial —
AnyBodyStudy Study = {
.
.
.
AnyOutputFun MaxAct = {
Val = .MaxMuscleActivity;
};
};

AnyParamStudy ParamStudy = {
.
.
.
AnyDesMeasure MaxAct = {
Val = max(…Study.MaxAct());
};
};
— cut from tutorial —
I can’t figure out the correct syntax. Is there a way to do this
without writing out files to the operating system (ie keep it all
within AnyBody)?
/jokke

Hi,

The AnyDesMeasure need to be a single value, it is not allowed to
assign it a vector. I also tried to make the AnyDesMeasure dependent
on a second variable that would be time but it is not allowed either.
That mean it is not possible to do it directly. I think you have no
other choice than writing output files.

Best regards,
Sylvain, AnyBody Support.

— In anyscript@yahoogroups.com, “joakim_holmberg” <jokke@…> wrote:
>
> Hello.
> I want to perform a very simple parameter study
> using “AnyParamStudy1D”. But unlike the situation described in the
> tutorial “Defining a parameter study”
> (http://www.anybodytech.com/657.0.html) I don’t want the maximum
> value of the output vector. I want the whole vector (ie results
from
> all time steps for all iterations).
> — cut from tutorial —
> AnyBodyStudy Study = {
> .
> .
> .
> AnyOutputFun MaxAct = {
> Val = .MaxMuscleActivity;
> };
> };
>
> AnyParamStudy ParamStudy = {
> .
> .
> .
> AnyDesMeasure MaxAct = {
> Val = max(…Study.MaxAct());
> };
> };
> — cut from tutorial —
> I can’t figure out the correct syntax. Is there a way to do this
> without writing out files to the operating system (ie keep it all
> within AnyBody)?
> /jokke
>