【问题标题】:If loop, error in macro如果循环,宏中的错误
【发布时间】:2017-06-01 11:41:33
【问题描述】:

您好,我正在尝试为 imagej 制作宏。 现在我有一个大约 300 个元素的向量 Array1y 作为输入。如果我想将向量细分为子向量,我该怎么办?例如,如果我想要 100 个子向量,那么步长为 30,我正在考虑类似的事情

w=30;
step= Array1y.length/w
for (i=0; i<Array1y.length; i+=(w+1)) 
{
for (j=w; j<Array1y.length ; j+=w)
a(i)= Array.slice(Array1y,i,w)
Array.print a(i)
}
}

怎么了? 如果我没有 300 个但更少的元素,它可以工作吗,比如说 268,我也想要 30 步(所以我有最后一个不是由 30 个元素组成的子向量?)

【问题讨论】:

  • “怎么了?”缩进?更严重的是,您可能应该阅读integer division
  • 这是java还是javascript?因为 .slice 来自 js 对吧?
  • 在imagej中实现宏的ijm文件
  • 其实问题不在于除法,而在于“for”行!

标签: java arrays split macros


【解决方案1】:

我不确定你想要做什么,或者它是否真的是java,但我认为你要求的是:

public static void main(String[] args) {
    int[] vector = new int[268];
    IntStream.range(0, vector.length).forEach(i -> vector[i] = i); // to fill the vector
    int subvectorSize = 30;
    int[][] subvectors = new int[vector.length/subvectorSize+1][subvectorSize];  // array of arrays
    for(int i=0; i< vector.length; i++){  // iterate over vector
        int x = i/subvectorSize; // get quotient (xth subvector)
        int y = i%subvectorSize; // get reminder (index y of subvector)
        subvectors[x][y] = vector[i];
    }
    System.out.println(Arrays.deepToString(subvectors));
}

输出:

[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 , 23, 24, 25, 26, 27, 28, 29], [30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 , 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70 , 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89], [90, 91, 92, 93, 94 , 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119 ], [120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143 , 144, 145, 146, 147, 148, 149], [150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167 , 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179], [180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191 , 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209], [210, 211, 212, 213, 214, 215 , 216, 217, 2 18、219、220、221、222、223、224、225、226、227、228、229、230、231、232、233、234、235、236、237、238、239]、[240、241、 242、243、244、245、246、247、248、249、250、251、252、253、254、255、256、257、258、259、260、261、262、263、264、265、266、 267, 0, 0]]

【讨论】:

    猜你喜欢
    • 2013-07-02
    • 1970-01-01
    • 2018-07-15
    • 2015-09-14
    • 2023-02-21
    • 1970-01-01
    • 2019-03-29
    • 1970-01-01
    • 2012-09-28
    相关资源
    最近更新 更多