Opened 10 years ago
Closed 10 years ago
#688 closed bug (Fixed)
Bug in utility/rotate_vec.m — at Version 1
| Reported by: | colucix | Owned by: | arango |
|---|---|---|---|
| Priority: | minor | Milestone: | Matlab Processing Scripts |
| Component: | Matlab | Version: | 3.7 |
| Keywords: | Cc: |
Description (last modified by )
At lines 126:127 for 3D vector fields, we should have in rotate_vec.m:
Vout(i,1:Mm,:)=-UatV(1,2:M ,:).*sin(Vangle(1,1:Mm,:))- ...
Vinp(i,1:Mm,:).*cos(Vangle(1,1:Mm,:));
instead of
Vout(i,1:Mm)=-UatV(1,2:M ).*sin(Vangle(1,1:Mm))- ...
Vinp(i,1:Mm).*cos(Vangle(1,1:Mm));
This is for the rotation at the edges [1,L] of the vector field. Thank you.
Change History (1)
comment:1 by , 10 years ago
| Description: | modified (diff) |
|---|---|
| Resolution: | → Fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Yes, good catch. Thank you!