All Downloads are FREE. Search and download functionalities are using the official Maven repository.

swim.math.VectorRN Maven / Gradle / Ivy

// Copyright 2015-2019 SWIM.AI inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package swim.math;

import swim.codec.Debug;
import swim.codec.Format;
import swim.codec.Output;
import swim.structure.Kind;
import swim.structure.Record;
import swim.structure.Value;
import swim.util.Murmur3;

public class VectorRN implements Debug {
  final double[] array;

  public VectorRN(double... array) {
    this.array = array;
  }

  public final int dimension() {
    return this.array.length;
  }

  public final double get(int i) {
    return this.array[i];
  }

  public final VectorRN plus(VectorRN that) {
    final double[] us = this.array;
    final double[] vs = that.array;
    final int n = us.length;
    if (n != vs.length) {
      throw new DimensionException();
    }
    final double[] ws = new double[n];
    for (int i = 0; i < n; i += 1) {
      ws[i] = us[i] + vs[i];
    }
    return new VectorRN(ws);
  }

  public final VectorRN opposite() {
    final double[] us = this.array;
    final int n = us.length;
    final double[] ws = new double[n];
    for (int i = 0; i < n; i += 1) {
      ws[i] = -us[i];
    }
    return new VectorRN(ws);
  }

  public final VectorRN minus(VectorRN that) {
    final double[] us = this.array;
    final double[] vs = that.array;
    final int n = us.length;
    if (n != vs.length) {
      throw new DimensionException();
    }
    final double[] ws = new double[n];
    for (int i = 0; i < n; i += 1) {
      ws[i] = us[i] - vs[i];
    }
    return new VectorRN(ws);
  }

  public final VectorRN times(double scalar) {
    final double[] us = this.array;
    final int n = us.length;
    final double[] ws = new double[n];
    for (int i = 0; i < n; i += 1) {
      ws[i] = us[i] * scalar;
    }
    return new VectorRN(ws);
  }

  public Value toValue() {
    final double[] us = this.array;
    final int n = us.length;
    final Record header = Record.create(n);
    for (int i = 0; i < n; i += 1) {
      header.item(us[i]);
    }
    return Record.create(1).attr("vector", header);
  }

  protected boolean canEqual(VectorRN that) {
    return true;
  }

  @Override
  public boolean equals(Object other) {
    if (this == other) {
      return true;
    } else if (other instanceof VectorRN) {
      final VectorRN that = (VectorRN) other;
      if (that.canEqual(this)) {
        final double[] us = this.array;
        final double[] vs = that.array;
        final int n = us.length;
        if (n == vs.length) {
          for (int i = 0; i < n; i += 1) {
            if (us[i] != vs[i]) {
              return false;
            }
          }
          return true;
        }
      }
    }
    return false;
  }

  @Override
  public int hashCode() {
    if (hashSeed == 0) {
      hashSeed = Murmur3.seed(VectorRN.class);
    }
    int code = hashSeed;
    final double[] us = this.array;
    final int n = us.length;
    for (int i = 0; i < n; i += 1) {
      code = Murmur3.mix(code, Murmur3.hash(us[i]));
    }
    return Murmur3.mash(code);
  }

  @Override
  public void debug(Output output) {
    output = output.write("VectorRN").write('.').write("of").write('(');
    final double[] us = this.array;
    final int n = us.length;
    if (n > 0) {
      output = output.debug(us[0]);
      for (int i = 1; i < n; i += 1) {
        output = output.write(", ").debug(us[i]);
      }
    }
    output = output.write(')');
  }

  @Override
  public String toString() {
    return Format.debug(this);
  }

  private static int hashSeed;

  private static TensorForm form;

  public static VectorRN of(double... array) {
    return new VectorRN(array);
  }

  @Kind
  public static TensorForm form() {
    if (form == null) {
      form = new VectorRNForm();
    }
    return form;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy