gpt4 book ai didi

arrays - 从二进制值转换为原始数组值

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:40 25 4
gpt4 key购买 nike

给定一个已转换为二进制的二维数组,对于二进制数组的一些索引值,如何在原始数组中找到对应的值?

也许使用 ind2sub 的东西?

最佳答案

不用,可以直接索引。

%# create some test data
m = magic(4);
%# make binary image
bw = m>10;

%# read values from m
values = m(bw);

%# alternatively, if you have linear indices (as found via find)...
linIdx = find(bw);
%# ...you can use that instead
values = m(linIdx);

关于arrays - 从二进制值转换为原始数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2782252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com