Opened 11 years ago

Last modified 11 years ago

#2529 closed defect

Vectorization of unknown dimensions fails — at Initial Version

Reported by: Martin Sjölund Owned by: somebody
Priority: high Milestone: 1.9.1
Component: Frontend Version: trunk
Keywords: Cc:

Description

Vectorization fails for the following case:

function f
  input Integer m;
  output Real y;
protected
  parameter Real phi[m] = linspace(0,1,m);
  parameter Real t[2, m] = 2/m*{ cos(phi), sin(phi)}; // Cannot elaborate the trig. functions here
algorithm
  y := sum(t);
end f;

model M
  Real r = f(integer(time));
end M;

Change History (0)

Note: See TracTickets for help on using tickets.