001/* 002 * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences. 003 * Copyright (C) 2006 - JScience (http://jscience.org/) 004 * All rights reserved. 005 * 006 * Permission to use, copy, modify, and distribute this software is 007 * freely granted, provided that this notice is preserved. 008 */ 009package org.jscience.mathematics.structure; 010 011/** 012 * This interface represents a vector space on which a positive vector length 013 * or size is defined. 014 * 015 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a> 016 * @version 3.0, February 13, 2006 017 * @see <a href="http://en.wikipedia.org/wiki/Normed_vector_space"> 018 * Wikipedia: Normed Vector Space</a> 019 */ 020public interface VectorSpaceNormed<V, F extends Field> extends VectorSpace<V, F> { 021 022 /** 023 * Returns the positive length or size of this vector. 024 * 025 * @return <code>|this|</code>. 026 * @see <a href="http://en.wikipedia.org/wiki/Vector_norm"> 027 * Wikipedia: Vector Norm</a> 028 */ 029 F norm(); 030 031}