Closed VorpalBlade closed 4 years ago
Mr = @(lambda) ([cos(lambda), sin(lambda); -sin(lambda), cos(lambda)]);
now turns into
Mr = @(lambda) ([cos, (lambda), sin, (lambda); -sin, (lambda), cos, (lambda)]);
The recent fix for list concatenations likely broke this.
Hi,
yeah you are right - actually my fix of the bug introduced by this commit causing this.
I try to revert "my fix" and patch up the original commit.
It should be fixed for now.
now turns into
The recent fix for list concatenations likely broke this.