Community Profile

photo

LauraLee Austin


Last seen: 10 months ago Active since 2016

Statistics

All
  • Personal Best Downloads Level 1
  • 5-Star Galaxy Level 1
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Triathlon Participant
  • Promoter
  • Solver

View badges

Content Feed

View by

Answered
how to give coordinate with different size of circles.
for idx=1:length(lake) px = lake(idx,1)-lake(idx,3); py = lake(idx,2)-lake(idx,3); d = lake(idx,3)*...

7 years ago | 0

Answered
How to set manual values for colorbar
Let's assume the max value is 128 and your data is in a matrix X. I'm going to modify a demo file of earth to have values greate...

7 years ago | 1

Answered
I am getting NaN as answer in the code, can please give me some advice
inv(A) generates a matrix of inf's, B contains 0's, inf*0 = NaN

7 years ago | 0

Answered
Help storing for loop iterations
You do not need to increment i in the for loops, it's incremented automatically. Q_bar is 3x3 and strain 3x1, this is the dim...

7 years ago | 0

Answered
What does it mean when ~ is used as one of the outputs for a function?
It indicates that you are not using that output variable. [FX,FY] = gradient(F) Let's say you wanted the FY variable but n...

7 years ago | 2

Answered
Help aligning two vectors with one centred on zero.
How about this, it should allow the location of 0 in x1 to change and the number of values in set x1 to be variable as well. ...

7 years ago | 0

| accepted

Answered
How to rediagonalize the diagonal of a matrix?
Hi Paul, You are over writing the matrix V1, therefore you are not summing values from the original matrix. Use a temporary vari...

7 years ago | 0

| accepted

Answered
How to segment data using overlapping window
It was not clear to me how/where you wanted the overlap. Below is my quick stab at what I think you might be looking for. It is ...

7 years ago | 2