Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

FT_add_comment_char_to_line.m

Blame
    • adf's avatar
      ef25ce70
      · ef25ce70
      adf authored
      adding current code of SimTools.
      
      ef25ce70
      History
      adf authored
      adding current code of SimTools.
      
    FT_add_comment_char_to_line.m 522 B
    %---------------------------------------------------------------------  
    % function [outstring] = FT_add_comment_char_to_line(instring)
    % 
    % Add comment char in front of a one-line string.
    %
    % instring: string, one line of text
    % outstring: string intext with a '%' in front
    %
    % Part of the SimTools package
    % Andreas Freise 22.05.08 afreise@googlemail.com
    %---------------------------------------------------------------------  
    
    function [outstring] = FT_add_comment_char_to_line(instring)
      
      outstring=['%',instring];