如何将 Int[][] 转换为 Double[][]?

发布于 2024-11-04 05:05:06 字数 585 浏览 2 评论 0原文

伙计们,很抱歉问了基本问题,

我在这里遇到一个问题,我有一个 Int[][] 锯齿状数组,我想将其转换为 Double[][] 锯齿状阵列。当然,我不想更改数组内的值,例如:

int[2][1] = 25

当它转换为双精度时,

int[2][1] = 25

仍然相同。

这是我的代码,

value = File.ReadLines(filename)
            .Select(line => line.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
                .Select(MyIntegerParse)
                .ToArray()
                )
            .ToArray();

所以我有 value[][] ,它的类型是整数。我想将其转换为双精度。

感谢您的任何帮助。

Guys, sorry for asking basic question,

i have a problem here where I have a Int[][] jagged array, and I want to convert it to Double[][] jagged array. Of course I don't want to change the value inside the array for example:

int[2][1] = 25

and when it converted to double,

int[2][1] = 25

still the same.

here's my code,

value = File.ReadLines(filename)
            .Select(line => line.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
                .Select(MyIntegerParse)
                .ToArray()
                )
            .ToArray();

So i have value[][] which is type is integer. and i want to convert it to double.

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧城烟雨 2024-11-11 05:05:06

尝试:

.Select(x => (double)MyIntegerParse(x))

Try:

.Select(x => (double)MyIntegerParse(x))
滥情哥ㄟ 2024-11-11 05:05:06
private double[][] intarraytodoublearray(int[][] val) 
        {
            var ret = new double[val.Length][];
            for (int i = 0; i < val.Length; i++ )
            {
                ret[i] = new double[val[i].Length];
                for (int j = 0; j < val[i].Length; j++) 
                {
                    ret[i][j] = (double)val[i][j];
                }
            }
            return ret;
        }

像这样的辅助函数可能会起作用

private double[][] intarraytodoublearray(int[][] val) 
        {
            var ret = new double[val.Length][];
            for (int i = 0; i < val.Length; i++ )
            {
                ret[i] = new double[val[i].Length];
                for (int j = 0; j < val[i].Length; j++) 
                {
                    ret[i][j] = (double)val[i][j];
                }
            }
            return ret;
        }

something like this helperfunction might work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文