社区资料

照片

纳尔菲

Last seen: 7 days ago|自2012年以来活跃

统计数据

全部
  • 首次审查
  • 知识渊博的1级
  • 第一个答案
  • Solver

View badges

内容提要

View by

回答
通过3D矩阵循环
达米斯(Damith),通过将索引包括在变量名称中,您最终会得到许多需要建立字符串的地方...

8 years ago | 0

回答
Freeing GPU memory associated with CUDA kernels
杰里米(Jeremy),在这种情况下,我对正在发生的事情感到困惑。我建议您联系技术支持并尝试给予...金宝app

9年前|0

回答
使用MATLAB使用模板的CUDA内核
Alex, Allow me to quote from the help for parallel.gpu.CUDAKernel and try to parse it for you. If you have suggestions for h...

9年前|0

|公认

回答
Freeing GPU memory associated with CUDA kernels
Jeremy, How large is the PTX for the kernels you are loading via the CUDAKernel interface? The CUDAKernel object in MATL...

9年前|0

回答
如何使用GPU运行arrayfun?
arrayfun内部,人们只能执行计算with scalars, so vector and matrix computations are not supported. In partic...

10年前|2

|公认

Solved


列除去
从输入矩阵A中删除nth列,然后返回输出B中的结果矩阵。因此,如果a = [1 2 3;4 5 6];和 ...

10年前

Solved


选择向量的其他元素
写一个函数,该函数返回传递的向量的所有其他元素。也就是说,它返回所有奇数元素,s ...

10年前

Solved


确定输入是否奇怪
Given the input n, return true if n is odd or false if n is even.

10年前

Solved


根据远离原点的范围对复数列表进行排序。
给定复数z的列表,返回一个Zsort的列表,使得与原点最远的数字(0+0i)出现f ...

10年前

Solved


往回行
给定数字n,创建一个n by-n矩阵,其中整数从1到n^2沿行沿行动来回驱动,如...

10年前

Solved


大多数非零元素连续
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

10年前

Solved


在矩阵中找到质子数的数字均值。
矩阵中总会至少有一个素数。示例:输入in = [8 3 5 9]输出输出为4 ...

10年前

Solved


找到输入向量的所有数字的总和
找到输入向量X的所有数字的总和。示例:输入x = [1 2 3 5]输出y是11输入x ...

10年前

Solved


查找所有小于0或大于10的元素,然后用NAN代替它们
给定输入向量X,查找X的所有元素小于0或大于10,然后用NAN代替它们。示例:输入...

10年前

Solved


制作棋盘矩阵
给定整数n,制作由交替的矩阵和零组成,如下所示。A(1,1)应该是1.示例...

10年前

Solved


添加两个数字
给定a和b,返回c中的总和a+b。

10年前

Solved


使矢量[1 2 3 4 5 6 7 8 9 10]
在MATLAB中,您可以通过将元素封闭在So:X = [1 2 3 4]逗号之类的方括号中来创建一个向量。

10年前