Opened 14 years ago
Last modified 14 years ago
#1422 closed defect (fixed)
Call vectorization does not work for ranges
Reported by: | Martin Sjölund | Owned by: | Martin Sjölund |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Version: | ||
Keywords: | Cc: | Martin Sjölund, |
Description
sin(1:2) => {sin((1:2)[1]),sin((1:2)[2])}
ExpresionSimplify should take care of the rest:
{sin(1),sin(2)}
Note:
See TracTickets
for help on using tickets.
mosfiles-dassl2/nonConstantParam.mos used this and failed when we switched it to use the regular vectorization module. Update the test when this is working