help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bug in Octave 8.2.0


From: Ian McCallion
Subject: Bug in Octave 8.2.0
Date: Mon, 3 Jul 2023 11:01:53 +0100

fullfile() operates on strings or cells. so:
      fullfile('path', {'a','b'})
produces:
    ans =
    {
      [1,1] = path\a
      [1,2] = path\b
    }

However:
    fullfile('path', {})
produces:
    ans = path

This is surely a bug??   {} is not the same as ''

Cheers... Ian

reply via email to

[Prev in Thread] Current Thread [Next in Thread]