Load Data in Scilab: 4000x2 Matrix Issue

  • Thread starter Thread starter ndnkyd
  • Start date Start date
  • Tags Tags
    Data
AI Thread Summary
Loading a large 4000x2 matrix of coordinates into Scilab using the loadmatfile function with the "-ascii" option can lead to performance issues, potentially causing the software to hang. Users are seeking more efficient methods for importing such data. One suggested approach involves using the read function with parameters A=read(filename,-1,3), which may improve the loading process for both 4000x2 and 4000x3 matrices. Further optimization techniques or alternative functions for handling large datasets in Scilab could also be explored to enhance performance.
ndnkyd
Messages
6
Reaction score
0
I am trying to load a 4000x2 matix of coordinates into Scilab using loadmatfile("-ascii","filename") and Scilab gets hung up. Not sure if it is the file size or my coding. Anyone know a code that would be more effecient to load this type of data, either 4000x2 or 4000x3?
 
Technology news on Phys.org
The code I was looking for is:

A=read(filename,-1,3)
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Thread 'Project Documentation'
Trying to package up a small bank account manager project that I have been tempering on for a while. One that is certainly worth something to me. Although I have created methods to whip up quick documents with all fields and properties. I would like something better to reference in order to express the mechanical functions. It is unclear to me about any standardized format for code documentation that exists. I have tried object orientated diagrams with shapes to try and express the...
Back
Top