photo

Nick Suttell


Active since 2013

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

2 Questions
1 Answer

RANK
129,309
of 301,421

REPUTATION
0

CONTRIBUTIONS
2 Questions
1 Answer

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 21,269

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,475

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Answered
How to turn a 64-bit matrix into a binary matrix
Basically I want to change each value in the matrix from 8 bytes to 1 bit

12 years ago | 0

| accepted

Question


How to turn a 64-bit matrix into a binary matrix
I have a matrix that is millions of rows long. It's a matrix of only one's and zero's. I want to turn the value type from 64-b...

12 years ago | 3 answers | 0

3

answers

Question


How can I create a random binary matrix with a specified number of 1's and 0's?
fi = 1/3 x = randi([0 1],1,9); while (mean(x)~= fi) x = randi([0 1],1,9); end This...

12 years ago | 4 answers | 0

4

answers