我正在尝试编写一些代码,这些代码将允许矩阵的输入,然后计算矩阵的倒数,然后计算向量的输入。但是,一旦输入了矩阵值,我就无法让代码暂停并等待向量条目,它只是默认情况下执行了主填充矢量的其余部分。是否可以重置输入或其他内容,以便在我想填充向量时等待输入?
#include <iostream>
#include "MatrixInverse.h"
#include "ReadMatrixRow.h"
#include "GlobalMinVar.h"
using std::cin;
using std::cout;
using std::endl;
int main(){
int i;
int const n_size=3;
double **SigmaInv, **Sigma,*mu,*MinVarWeight;
Sigma = (double **)malloc(n_size * sizeof(double *));
Sigma[0] = (double *)malloc(n_size * n_size * sizeof(double));
for(i = 1; i < n_size; i++)
{ Sigma[i] = Sigma[0] + i * n_size;}
cout<<"Enter the entries of the covariance matrix row by row,"<<endl;
cout<<"breaking each row with a non-numeric character:"<<endl;
//PAUSES HERE FOR MATRIX INPUT
for (i=0;i<n_size;i++)
{
ReadMatrixRow(cin,Sigma,i);
}
mu=(double *)malloc(n_size * sizeof(double *));
cout<<"Input the expected return vector values:"<<endl;
//WANT A PAUSE HERE FOR FURTHER INPUT THAT IS SEPARATE
ReadVector(cin,mu);
for (i=0;i<n_size;i++)
{
cout<<mu[i]<<endl;
}
读取矩阵和向量的函数为
istream& ReadMatrixRow(istream& in, double **s,int i)
{
if (in)
{
int j=0;
double x;
while (in>>x)
{
s[i][j]=x;
++j;
}
in.clear();
in.ignore(1);
}
return in;
}
istream& ReadVector(istream& in, double *s)
{
if (in)
{
int i=0;
double x;
while (in>>x)
{
s[i]=x;
++i;
}
in.clear();
}
return in;
}
您似乎通过按下系统的文件末端序列来结束输入的第一个(和第二)循环。这有效地关闭了输入,因此您的第二个循环根本没有执行。如果您只是在调试器中逐行浏览代码,这应该很明显。
。而不是使用for
循环来读取输入。这样,您将不必使用文件终止序列来终止输入,您也将(或应该)保护不超出分配的内存的范围(如果您只是只使用静态数组分配固定数量的元素?)。
暂停,直到用户按键使用getch()。您需要包含conio.h头文件才能使用getch