腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(9999+)
视频
沙龙
3
回答
R
错误
allocMatrix
、
大家好,abatch<-ReadAffy()
Error
in read.affybatch(filenames = l$filenames, phenoData = l$phenoData, : 这个
allocMatrix
错误的一般含义是什么?
浏览 2
提问于2009-11-30
得票数 3
回答已采纳
1
回答
如何使用MPI_Sendrecv进行矩阵转置?
、
、
void sendrecvelem(int **A, int **
R
, int p, int elements, int part) { for(i=1;i<p;i++) { MPI_Sendrecv(A[c*part], j, MPI_INT, i, j, &
R
[elements][c*part], j&id); int elements=10,i,j;
浏览 5
提问于2019-12-15
得票数 1
1
回答
分割错误:在分配矩阵时为11
、
、
、
、
#include <stdlib.h> *M = (int**)malloc(n * sizeof(int(*M)[i] = malloc(m * sizeof(int)); } int **mat;
R
= 15;
allocMatrix
(&mat, <em
浏览 1
提问于2016-03-16
得票数 0
回答已采纳
3
回答
用C++上的矩阵函数分割Ubuntu上的故障(核倾)
、
、
、
.);void
allocMatrix
(double **M, int nl, int nc) { delete [] M[i];}double **M;void function(double **matrix, ...) {
all
浏览 7
提问于2013-06-10
得票数 0
回答已采纳
3
回答
内联函数的LNK2019未解析误差
、
、
、
我得到的错误如下: { GLMatrix(int sizeX, int sizeY); void
allocMatrix
addColumnI(int row, int column, long item);
浏览 1
提问于2011-12-23
得票数 3
回答已采纳
1
回答
如何在调用
R
的C `"Rinterals.h"`时禁用`
R
_NO_REMAP`
、
我在Ubuntu20.04上调用
R
的后端"Rinternals.h",并注意到
R
_NO_REMAP宏标志不会取消定义。该标志禁止删除Rf_前缀的别名。例如,如果我翻译这个文件:#include "
R
.h"#include "Rinternals.h"#include "
R
_ext
浏览 0
提问于2021-10-22
得票数 1
1
回答
为什么对
R
中的矩阵而言,列向运算比逐行运算(应该是这样)要快得多?
、
、
Rcpp; const int n = 3; SEXP rowWise() { } return A;SEXP columnWise() { for (i = 0; i <
浏览 0
提问于2018-08-07
得票数 6
回答已采纳
2
回答
R
矩阵存储器表示法
、
我正在为
R
写一个插件,我想分配一个3维的
R
矩阵来返回。我该怎么做呢?在Rinternals.h中,我看到了一个
allocMatrix
和一个alloc3DArray。我要用其中的一个吗?
浏览 0
提问于2014-05-06
得票数 0
2
回答
巨型3D数组的动态分配
、
* * including
error
report, array or matrixmessage to stderr, then exit the program ****/ fprintf(stderr,"%s\n",
error
_text); fprintf(stderr,&qu
浏览 2
提问于2012-08-02
得票数 3
2
回答
C中的结构矩阵
、
、
> char type_toy[20]; char town[20];} Area; } int N, M; printf("N = ..., M = ...");
AllocMatrix
浏览 2
提问于2014-12-19
得票数 1
2
回答
编写
R
扩展时如何返回命名的VECSXP
、
、
、
最近我有一个bug,在修复它时,我想知道是否可以返回一个VECSXP (即
R
列表类型),其中元素是命名的。这个c++代码:{ SEXP a = PROTECT(
allocMatrix
(REALSXP, 5, 5)); SET_VECTOR_ELT(OS, 1, b); return OS;会给出
R
中两个元素
浏览 3
提问于2016-07-12
得票数 5
回答已采纳
1
回答
VSCode没有显示所有警告/错误
、
stdio.h>int readDim(FILE *);} { FILE *fp=openFile("matrice.txt", "
r
"readDim(fp), ncols=read
浏览 8
提问于2022-03-11
得票数 0
4
回答
动态分配矩阵的函数
、
、
、
、
我认为错误出在我的
allocMatrix
()函数上,因为如果我在main中分配矩阵,所有的工作都很顺利。rows and columns:\n"); ret=
allocMatrix
} } return EXIT_SUCCESS;allo
浏览 2
提问于2015-08-17
得票数 4
2
回答
R
multinom()函数在迭代100次后停止,原因是什么?
、
、
133095.661773stopped after 100 iterations
Error
in outer(X, Y, FUN, ...) :
allocMatrix
: too many elements specified 一种可能的解释是,我的小macbook air不适合这项工作,但我想知道
浏览 0
提问于2012-07-28
得票数 9
回答已采纳
1
回答
MPI采集多个向量
、
、
include <stdlib.h>#include <math.h>#include <unistd.h> MPI_Comm_rank(MPI_COMM_WORLD, &rank);//rank for each process
浏览 0
提问于2014-12-19
得票数 1
回答已采纳
2
回答
使用.Call从C向
R
返回值时出现段错误(返回不兼容的指针类型)
、
、
我有一个包含两列的文本文件,
R
将其读取为data.frame。读完这段代码后,我想对C中的一个函数执行.Call,该函数将读取该date.frame并返回
R
中某个变量的值,但是在尝试返回值时会出现段错误。我找不到解决这个问题的办法,有人能帮我吗?#include <Rinternals.h>#include <
R
.h>#include <stdio.h>i)); target[1][i]
浏览 0
提问于2019-02-02
得票数 1
2
回答
.Call: matrix ()失去矩阵的维数
、
在SEXP myfun(SEXP n, SEXP d)类型的函数中,我分配一个(n,d)-matrix,它包含C中计算的函数的结果: SEXP res = PROTECT(
allocMatrix
(REALSXP
浏览 1
提问于2015-03-07
得票数 1
回答已采纳
2
回答
分配给3D矩阵的空闲内存
、
double ***
AllocMatrix
3(short nrh, short nch, short nph) short i,j,k; m=(double
浏览 1
提问于2013-06-22
得票数 0
3
回答
如何计算(A + B) * (A + B)?A,B是矩阵
、
*(*(mat.a + i) + j) = x;*/ cout << endl; return mat; mat1.n = n1; mat2.n = n2; mat3.n = n1; { cout << "
浏览 2
提问于2011-03-12
得票数 2
回答已采纳
1
回答
"Write
Error
“图
R
每次我尝试绘制任何内容时,例如:plot(C1)
R
错误写入错误。> sessionInfo()Platform: x86_64-pc-linux-gnu (64-bit) Running under
浏览 27
提问于2017-08-25
得票数 0
回答已采纳
点击加载更多
相关
资讯
PBE System Error报错
机器学习基石-Noise and Error
断言,Error和Exception区别
如何捕获和分析 JavaScript Error
JavaScript Error对象 参考手册
热门
标签
更多标签
云服务器
ICP备案
对象存储
云点播
实时音视频
活动推荐
运营活动
广告
关闭
领券