matlab,如何使用函数打印的输出?

时间:2016-01-13 17:25:31

标签: matlab output

我想存储一些在函数的迭代过程中打印的值,但我不知道如何。 这是我正在使用的代码:

a = 0
b = 2
tol = 1.e-6
trace = 1
F = @(x)1./(x.^3-2*x-5);
Q = quad(F,a,b,tol,trace);

quad函数使用自适应求积法从Fa给出b的积分。 trace = 1 在递归过程中将值打印到控制台 [fcnt a b-a Q],但不会将它们存储到变量中。

我想存储在程序中打印的值a和b-a,供以后使用。 例如,此代码提供

>> quad(F,0,2,1.e-6,1);
   9     0.0000000000     5.43160000e-01    -0.0989460227
  11     0.5431600000     9.13680000e-01    -0.1584111746
  13     0.5431600000     4.56840000e-01    -0.0755952309
  15     1.0000000000     4.56840000e-01    -0.0828028464
  17     1.0000000000     2.28420000e-01    -0.0391911692
  19     1.2284200000     2.28420000e-01    -0.0436112507
  21     1.4568400000     5.43160000e-01    -0.2054245169
  23     1.4568400000     2.71580000e-01    -0.0667670196
  25     1.4568400000     1.35790000e-01    -0.0302481864
  27     1.5926300000     1.35790000e-01    -0.0365183194
  29     1.7284200000     2.71580000e-01    -0.1366285551
  31     1.7284200000     1.35790000e-01    -0.0492888403
  33     1.8642100000     1.35790000e-01    -0.0871164919
  35     1.8642100000     6.78950000e-02    -0.0350033472
  37     1.9321050000     6.78950000e-02    -0.0520998049
  39     1.9321050000     3.39475000e-02    -0.0228214919
  41     1.9660525000     3.39475000e-02    -0.0292778809

我需要在上面第二和第三列中打印的值。

谢谢。

1 个答案:

答案 0 :(得分:2)

我不确定我是否理解你的问题;如果您想存储trace

  

9 0.0000000000 5.43160000e-01 -0.0989460227 11
  0.5431600000 9.13680000e-01 -0.1584111746

     等等......

到数组中,请考虑使用trace quad函数打印fprintf值。

您可以修改quand功能 - edit quad - 并查看:

if trace
    fprintf('%8.0f %16.10f %18.8e %16.10f\n',fcnt,a,h,Q);
end

我至少看到两种可能性:

1)使用diary功能

您可以在致电quad之前致电diary修改您的代码;此函数将CommandWindow中显示的输出日志创建为文本文件。

然后,您可以加载该文件的内容以在工作区中输入其内容(跟踪数据)。

别忘了添加“;”在调用quad结束时,函数的输出也将存储到日记文件中,这将阻止加载它的可能性

a = 0
b = 2
tol = 1.e-6
trace = 1
F = @(x)1./(x.^3-2*x-5);
% Define the name of the diary file
diary_filename='trace_data.txt';
% Enable saving the data into the "trace_data.txt" output file
diary(diary_filename)
Q1 = my_quad(F,a,b,tol,trace);
% Turn off the diary log
diary
% Load the trace data into the "trace_data" array in the workspace
trace_data=load(diary_filename)

您可能有一个更“通用”的方法,并使用tempname动态生成跟踪数据输出文件。

tempname在临时文件夹中生成文件名,因此,如果要将其存储到当前目录中,则必须将其拆分,使用fileparts提取实际文件名

a = 0
b = 2
tol = 1.e-6
trace = 1
F = @(x)1./(x.^3-2*x-5);
% Dynamically generation of the output file name
tmpName = tempname
% Extract the actual filename
[pathstr,name,ext]=fileparts(tmpName)
% Build the filename and add the extension
diary_file=[name '.txt']
% Enable saving the data into the "trace_data.txt" output file
diary(diary_file)
Q1 = my_quad(F,a,b,tol,trace);
% Turn off the diary log
diary
%  Load the trace data into the "trace_data" array in the workspace
trace_data=load(diary_file)

2)修改quad功能

由于quad功能的源代码可用,您可以直接修改(不推荐)功能,也可以将其复制到路径上的文件夹中并进行修改。 / p>

有很多方法可以修改这个功能。

其中一个可能是:

  • 添加一个输入参数,您可以在其中指定输出文件的名称
  • 在函数中添加打开文件的代码(fopen
  • fprintf调用
  • 中添加文件句柄
  • 关闭最后的输出文件(fclose

另一种可能性是在函数的定义中添加输出参数来存储跟踪数据;在这种情况下,您还必须添加代码以在函数的每次迭代中将跟踪数据存储到数组中。

希望这有帮助。

Qapla'