Mercurial > hg > octave-lyh
view test/test_index-wfi-t.m @ 13841:0a158dbdb04a
Remove 3 unused warning ids
Removed ids: empty-list-elements, fortran-indexing, complex-cmp-ops.
Renamed ids: string-concat -> mixed-string-concat
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 08 Nov 2011 09:07:13 -0800 |
parents | 981cd6796065 |
children |
line wrap: on
line source
## Copyright (C) 2006-2011 John W. Eaton ## ## This file is part of Octave. ## ## Octave 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 3 of the License, or (at ## your option) any later version. ## ## Octave 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 Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. %% test/octave.test/index-wfi-t/s-1.m %!test %! a = []; %! assert(isempty (a)); %% test/octave.test/index-wfi-t/s-2.m %!test %! a = 1; %! assert(a(1),1); %% test/octave.test/index-wfi-t/s-3.m %!test %! a = 1; %! assert(a(:),1); %% test/octave.test/index-wfi-t/s-4.m %!test %! a = 1; %! assert(a(:,:),1); %% test/octave.test/index-wfi-t/s-5.m %!test %! a = 1; %! assert(a(1,:),1); %% test/octave.test/index-wfi-t/s-6.m %!test %! a = 1; %! assert(a(:,1),1); %% test/octave.test/index-wfi-t/s-7.m %!test %! a = 1; %! assert(isempty (a(logical (0)))); %% test/octave.test/index-wfi-t/s-8.m %!test %! a = 1; %! fail("a(-1);"); %% test/octave.test/index-wfi-t/s-9.m %!test %! a = 1; %! fail("a(2);"); %% test/octave.test/index-wfi-t/s-10.m %!test %! a = 1; %! fail("a(2,:);"); %% test/octave.test/index-wfi-t/s-11.m %!test %! a = 1; %! fail("a(:,2);"); %% test/octave.test/index-wfi-t/s-12.m %!test %! a = 1; %! fail("a(-1,:);"); %% test/octave.test/index-wfi-t/s-13.m %!test %! a = 1; %! fail("a(:,-1);"); %% test/octave.test/index-wfi-t/s-14.m %!test %! a = 1; %! fail("a([1,2,3]);"); %% test/octave.test/index-wfi-t/s-15.m %!test %! a = 1; %! fail("a([1;2;3]);"); %% test/octave.test/index-wfi-t/s-16.m %!test %! a = 1; %! fail("a([1,2;3,4]);"); %% test/octave.test/index-wfi-t/s-17.m %!test %! a = 1; %! fail("a([0,1]);"); %% test/octave.test/index-wfi-t/s-18.m %!test %! a = 1; %! fail("a([0;1]);"); %% test/octave.test/index-wfi-t/s-19.m %!test %! a = 1; %! fail("a([-1,0]);"); %% test/octave.test/index-wfi-t/s-20.m %!test %! a = 1; %! fail("a([-1;0]);"); %% test/octave.test/index-wfi-t/v-1.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(a(1),4); %% test/octave.test/index-wfi-t/v-2.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(a(2),3); %% test/octave.test/index-wfi-t/v-3.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(all (a(:) == a_prime)); %% test/octave.test/index-wfi-t/v-4.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(all (a(1,:) == a)); %% test/octave.test/index-wfi-t/v-5.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(a(:,3),2); %% test/octave.test/index-wfi-t/v-6.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(all (a(:,:) == a)); %% test/octave.test/index-wfi-t/v-7.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(all (a(logical ([0,1,1,0])) == mid_a)); %% test/octave.test/index-wfi-t/v-8.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! fail("a(0);"); %% test/octave.test/index-wfi-t/v-9.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! fail("a(5);"); %% test/octave.test/index-wfi-t/v-10.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! fail("a(0,1);"); %% test/octave.test/index-wfi-t/v-11.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(isempty (a(logical (0),:))); %% test/octave.test/index-wfi-t/v-12.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! fail("a(:,0);"); %% test/octave.test/index-wfi-t/v-13.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(isempty (a([]))); %% test/octave.test/index-wfi-t/v-14.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(isempty (a([],:))); %% test/octave.test/index-wfi-t/v-15.m %!test %! a = [4,3,2,1]; %! a_prime = [4;3;2;1]; %! mid_a = [3,2]; %! assert(isempty (a(:,[]))); %% test/octave.test/index-wfi-t/m-1.m %!test %! a = [1,2;3,4]; %! a_fvec = [1;3;2;4]; %! a_col_1 = [1;3]; %! a_col_2 = [2;4]; %! a_row_1 = [1,2]; %! a_row_2 = [3,4]; %! assert(all (all (a(:,:) == a))); %% test/octave.test/index-wfi-t/m-2.m %!test %! a = [1,2;3,4]; %! a_fvec = [1;3;2;4]; %! a_col_1 = [1;3]; %! a_col_2 = [2;4]; %! a_row_1 = [1,2]; %! a_row_2 = [3,4]; %! assert(all (a(:) == a_fvec)); %% test/octave.test/index-wfi-t/m-3.m %!test %! a = [1,2;3,4]; %! a_fvec = [1;3;2;4]; %! a_col_1 = [1;3]; %! a_col_2 = [2;4]; %! a_row_1 = [1,2]; %! a_row_2 = [3,4]; %! fail("a(0);"); %% test/octave.test/index-wfi-t/m-4.m %!test %! a = [1,2;3,4]; %! a_fvec = [1;3;2;4]; %! a_col_1 = [1;3]; %! a_col_2 = [2;4]; %! a_row_1 = [1,2]; %! a_row_2 = [3,4]; %! fail("a(2);","warning");