Skip to content

petrukhinandrew/ComplexMatrixTool

Repository files navigation

Complex Matrix Tool

Possible implementation of a project that can store matrices of complex numbers, print, sum, mutiply and subtract them.

Example of usage

  $3 = 1+2i,2,3+i;4,5-6i,6
  
  print $3 
  
  ****************************
  *        *        *        *
  * 1 + 2i * 2 + 0i * 3 + 0i *
  *        *        *        *
  ****************************
  *        *        *        *
  * 4 + 0i * 5 - 6i * 6 + 0i *
  *        *        *        *
  ****************************
  
  $3 + 1,1,1;1,1,1
  
  ****************************
  *        *        *        *
  * 2 + 2i * 3 + 0i * 4 + 0i *
  *        *        *        *
  ****************************
  *        *        *        *
  * 5 + 0i * 6 - 6i * 7 + 0i *
  *        *        *        *
  ****************************
  
  $3 += 1,1,1;1,1,1
  
  print $3 
  

  ****************************
  *        *        *        *
  * 2 + 2i * 3 + 0i * 4 + 0i *
  *        *        *        *
  ****************************
  *        *        *        *
  * 5 + 0i * 6 - 6i * 7 + 0i *
  *        *        *        *
  ****************************```

About

Probable implementatoin of a little project for the first day of the kotlin summer school

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages