photo

Matt Macaulay


Last seen: mer än 5 år ago Active since 2017

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
6 Answers

Cody

0 Problems
1 Solution

RANK
2 037
of 300 302

REPUTATION
32

CONTRIBUTIONS
0 Questions
6 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
 of 20 911

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
118 798
of 168 040

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
How do I free up terminal for a script to keep running, i.e. run a script in two places at once?
I don't think it's possible to have the script run at two places at once. However a quick workaround would be to move the while ...

mer än 7 år ago | 0

| accepted

Answered
Define new variables to each instance of a string of repetitive values
The <https://au.mathworks.com/matlabcentral/fileexchange/41813-runlength RunLength function on file exchange> would be great for...

mer än 7 år ago | 1

| accepted

Answered
Can I run a loop with image variables that have different dimensions?
Make a cell of the images and loop through the cell: a = {I1 I2 I3 I4 I5 I6 I7 I8}; n = length(a); for i = 1:n ...

mer än 7 år ago | 2

| accepted

Answered
How to add an interval to a number?
Using a tolerance as KSSV mentioned does the job. x=[0 1]; y=[0 1]; [xp,yp]=ginput; epsilon = .1; ...

mer än 7 år ago | 1

| accepted

Answered
How can normalize matrix in range [-1,1]?
Divide the matrix by it's largest absolute value. For example, take the matrix: A = 200*(.5-rand(3)) Now normalise it: ...

mer än 7 år ago | 0

| accepted

Answered
im having troubles working with probabilities
You could try a bar chart like this: clf chanceDisease = [.6 .7]; age = [30 40]; bar(age, chanceDisease) ...

mer än 7 år ago | 0

| accepted

Solved


The 5th Root
Write a function to find the 5th root of a number. It sounds easy, but the typical functions are not allowed (see the test su...

nästan 8 år ago