代码运行出错 select(1)=0

问题描述

代码运行出错 select(1)=0

我用了下这个程序,在 Pcum=cumsum(P);%cumsum计算数组各行的和
Select=find(Pcum>=rand);
to_visit=J(Select(1));处出错,显示Select(1)=0
可以帮忙吗?

解决方案

不知道你用的是什么语言,建议你查查手册。

时间: 2024-11-08 22:25:03

代码运行出错 select(1)=0的相关文章

c++-基于opencv的人脸识别,代码运行出错,求帮忙!

问题描述 基于opencv的人脸识别,代码运行出错,求帮忙! 代码显示是没有错的,运行显示有未处理的异常,求大神!急!!! 解决方案 求大神帮忙!如果熟悉C++语言的,再详谈啊!我在手机上不方便传代码! 解决方案二: #include #include #include using namespace std; void PrintMat(CvMat*); void FputMat(FILE , CvMat *); int main(int argc, char * argv[]) { /读入图

求助!vc 6.0 搭建openssl运行出错

问题描述 求助!vc 6.0 搭建openssl运行出错 openssl已经编译成功.但在搭建运行一小段程序时报错. #include #include int main() { OpenSSL_add_all_algorithms(); return 0; } 报错如下图: 希望各位大神帮帮忙. 解决方案 把两段代码都截个图来看一下 解决方案二: VC++6.0新建工程,运行出错.VC6.0中对于openssl函数的调用 解决方案三: vc看是否支持对应的版本

c++-C++ 迷宫问题,代码运行除了正确结果却提示出错

问题描述 C++ 迷宫问题,代码运行除了正确结果却提示出错 代码如下: #include<iostream>using namespace std;int main(){ //矩阵初始化 int **migong; int h w; int m n; cout << ""请输入迷宫高度h和迷宫宽度w:"" << endl; cin >> h >> w; migong = new int *[h]; for

图片-大神,我这代码运行时为什么出错?

问题描述 大神,我这代码运行时为什么出错? #include #include #include struct sport { char sex,athname[10]; char itemtype,itemname[10]; int itemrank,itemnum,mgrade,wgrade; }ath[2]; struct school { int num; char name[10]; struct sport ath[2]; //int score; }sch[2]; void xue

vc++6.0运行出错问题,简单程序都不行;

问题描述 vc++6.0运行出错问题,简单程序都不行: 我的简单程序编译连接什么的都没有问题,最后运行时来了个c1083,百度又看不懂,求解决方法:(初学c,不会用): 解决方案 贴出你的程序到codepad.org,看看能不能运行. 如果不行,把地址贴在这里帮你看看. 解决方案二: 简单程序,具体是什么程序呢? 说说你的操作步骤吧. 解决方案三: 什么程序拿出来给看 解决方案四: 分析dump等,结合你的程序pdb,用windbg查看具体代码行数 解决方案五: 贴出代码来,光说个有问题别人怎么

js css-大神,我这代码运行时为什么出错?

问题描述 大神,我这代码运行时为什么出错? <!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd""><html xmlns=""http://www.w3.org/1999/xhtml"&

c-C代码中句子存放不同两个位置,编译都没错,一个运行正确,一个运行出错

问题描述 C代码中句子存放不同两个位置,编译都没错,一个运行正确,一个运行出错 #include //加法运算 int sum(int a, int b) { return a+b ; } //减法运算 int minus(int a, int b) { return a-b ; } void counting(int (*p)(int, int),int a, int b) { if(a <0 || b < 0) { printf("运算的数值<0n"); retu

.。初入java菜鸟。求此代码为什么运行出错

问题描述 ..初入java菜鸟.求此代码为什么运行出错 不停的循环,一直到输入's': char j='s'; Scanner chr=new Scanner(System.in); for(int i=0;i>=0;i++ ) { System.out.println("请输入s"); if(chr.next().charAt(j)=='s') { break; } } 解决方案 越界,偏移是i,不是j,j是s的值了 解决方案二: Scanner s = new Scanner

printf-教材上面照抄的代码,运行出错,求大神解决

问题描述 教材上面照抄的代码,运行出错,求大神解决 #include #include #include void upcase(char *inputstring,char **newstring); int main() { char *string=NULL; upcase("hello",&string); printf("str1=%sn",string); upcase("goodbye",&string); prin