Rust-Scientific-Computing / feotensor

Tensor library for scientific computing in Rust
MIT License
2 stars 0 forks source link

Implement Tensor #1

Closed siliconlad closed 3 months ago

CameronMatthew commented 3 months ago

What should a tensor allow:

siliconlad commented 3 months ago

Would the logical operators return a Boolean tensor?

CameronMatthew commented 3 months ago

Would the logical operators return a Boolean tensor?

Didn't think about that lol. I guess so. But that seems like an extra type that we just don't need right now. Let's leave those out until we absolutely need them.

siliconlad commented 3 months ago

I suppose you could also have a tensor which has 1's and 0's for true and false respectively. So might not be too difficult to implement, but still. Probably best to wait until we need it.