vec2ind is not supported for code generation?

2 Ansichten (letzte 30 Tage)
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah am 23 Nov. 2016
Kommentiert: HASAN AL-KAF am 16 Okt. 2021
vec2ind is not supported for code generation. Is there any other way to solve this issue?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 23 Nov. 2016
In R2016b notation,
sum((1:size(vec,1)).' .* vec)
In earlier releases you would need
sum( repmat((1:size(vec,1)).', 1, size(vec,2)) .* vec)
  2 Kommentare
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah am 24 Nov. 2016
Thanks for your answer
HASAN AL-KAF
HASAN AL-KAF am 16 Okt. 2021
Hi
The code doesn't give same result as vec2ind
for example vec= [1;0;1;0;1;1;5;0]
The result of vec2ind is 7.
The result of sum((1:size(vec,1)).' .* vec) is 50.
How can get exactly same result?. Becaue I want to transfer matlab code to c++.
Thank you.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by