File: FILEPARTS.m

package info (click to toggle)
scilab 5.3.3-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 330,656 kB
file content (16 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
% Test file for function fileparts()
% Copyright INRIA
% Matlab version: 7.0.0.19901 (R14)
% V.C.

file = '\home\user4\matlab\classpath.txt';

fileparts(file)

[pathstr] = fileparts(file)

[pathstr,name] = fileparts(file)

[pathstr,name,ext] = fileparts(file)

[pathstr,name,ext,versn] = fileparts(file)