本文介绍了第1列第1行附近的八度音阶错误未定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试从文件中读取矩阵.代码很简单

I try to read a matrix from a file. The code is very simple

function [mat] = read(file)

mat = load(file_points)

但是当我尝试运行它时

read('file')

mat =

包含以下字段的标量结构:

scalar structure containing the fields:

mat =


   3  4  6
   3  5  1

它显示矩阵,但是当我运行此命令时...

it shows the matrix, but when I run this command...

>>mat(1,1)

推荐答案

来自八度锻造关于load()

根据上面的描述,可变点是(标量)结构.但是,如果使用the_matrix_you_want = points.points;,则将检索矩阵.

According to above, variable points is a (scalar) structure.However, if you use the_matrix_you_want = points.points; you would retrieve matrix.

这篇关于第1列第1行附近的八度音阶错误未定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 06:54