Select Git revision
-
ballen4705 authored
raw power on time attributes in minutes not hours Removed lots of <CONTROL-M> characters from the SCSI files Added code to identify the exact ATA/ATAPI spec of a drive Modified the printout to be consistent (eg SMART everywhere, not S.M.A.R.T. in some places and not in others). git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@37 4ea69e1a-61f1-4043-bf83-b5c94c648137
ballen4705 authoredraw power on time attributes in minutes not hours Removed lots of <CONTROL-M> characters from the SCSI files Added code to identify the exact ATA/ATAPI spec of a drive Modified the printout to be consistent (eg SMART everywhere, not S.M.A.R.T. in some places and not in others). git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@37 4ea69e1a-61f1-4043-bf83-b5c94c648137
FT_example5.m 1.00 KiB
% Example file for using SimTools with Finesse
clear all;
% name of kat file which contains 'blocks'
inname='testconsts.kat';
% read in block from testblock.kat
block=FT_read_blocks_from_file(inname);
myblock=FT_copy_block(block,'constants');
disp('----------------------------------------------------------');
% print reflectivies
r1=FT_read_kat_constant(myblock,'Rm1');
r2=FT_read_kat_constant(myblock,'Rm2');
disp(sprintf('Reflectivities of m1 and m2: %f %f',r1,r2));
% now we change the reflectivity for one of m
myblock=FT_write_kat_constant(myblock,'Rm1',0.7);
%to check we print the block again
disp('----------------------------------------------------------');
disp('block of constants after changing Rm1:');
FT_print_block(myblock,'constants');
disp('----------------------------------------------------------');
disp('creating a tmp block from lines 1-4 of the constants');
newblock=FT_create_new_block('tmp');
[newblock]=FT_copy_lines_block_to_block(myblock,newblock,1:4);
FT_print_block(newblock,'tmp');