File: df_strset.m

package info (click to toggle)
octave-dataframe 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 760 kB
  • sloc: makefile: 123
file content (75 lines) | stat: -rw-r--r-- 2,428 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
function [x, over] = df_strset(x, over, S, RHS, pad = ' ')
  %# x = df_strset(x, over, S, RHS, pad = ' ')
  %# replaces the strings in cellstr x at indr by strings at y. Adapt
  %# the width of x if required. Use x 'over' attribute to display a
  %# message in case strings are overwritten.

  %% Copyright (C) 2009-2017 Pascal Dupuis <cdemills@gmail.com>
  %%
  %% This file is part of the dataframe package for Octave.
  %%
  %% This package is free software; you can redistribute it and/or
  %% modify it under the terms of the GNU General Public
  %% License as published by the Free Software Foundation;
  %% either version 2, or (at your option) any later version.
  %%
  %% This package is distributed in the hope that it will be useful,
  %% but WITHOUT ANY WARRANTY; without even the implied
  %% warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  %% PURPOSE.  See the GNU General Public License for more
  %% details.
  %%
  %% You should have received a copy of the GNU General Public
  %% License along with this package; see the file COPYING.  If not,
  %% see <http://www.gnu.org/licenses/>.
  
  %# adjust x size, if required
  if (isnull (RHS))
    %# clearing
    if (isempty (S))
      x = cell (0, 1); over = zeros (1, 0);
      return
    end
    dummy = S; dummy(1).subs(2:end) = [];
    over = builtin ('subsasgn', over, dummy, true);
  else
    if (isempty (S)) %# complete overwrite
      if (ischar (RHS)) RHS = cellstr (RHS); end
      nrow = length (RHS);
      if (any(~over(nrow)))
        warning ('going to overwrite names');
      end
      x(1:nrow) = RHS;
      over(1:nrow) = false;
      if (nrow < length (x))
        x(nrow+1:end) = {pad};
      end
      return
    else
      dummy = S(1); dummy.subs(2:end) = []; % keep first dim only
      if (any (~builtin ('subsref', over, dummy)))
        warning ('going to overwrite names');
      end
      over = builtin ('subsasgn', over, dummy, false);
    end
  end

  %# common part
  if (ischar (RHS) && length (S(1).subs) > 1) 
    %# partial accesses to a char array
    dummy = char (x);
    dummy = builtin ('subsasgn', dummy, S, RHS);
    if (isempty(dummy))
      x = cell (0, 1); over = zeros (1, 0);
      return
    end
    if (size (dummy, 1) == length (x))
      x = cellstr (dummy);
      return
    end
    %# partial clearing gone wrong ? retry
    RHS = { RHS }; 
  end
  x = builtin ('subsasgn', x, S, RHS);
    
end