I have 1X6 double vector A (where values change during the run):
0.0155 0.1566 0.0454 0.0146 0.3967 0.1879
I have another 1x6 int32 vector B (where values also change during the run):
120 14 42 2874 7 2147483647
I need to multiply these two and return C=A.*B:
1.86 2.1924 1.9068 ... 403512177.2713
any ideas on how to do it? I have been looking for solution for the past 2 hours and couldnt find anything helpful.
Thank you in advance!