
LauraLee Austin
Statistics
RANK
2 268
of 277 833
REPUTATION
22
CONTRIBUTIONS
0 Questions
8 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
5
RANK
9 006 of 18 798
REPUTATION
73
AVERAGE RATING
5.00
CONTRIBUTIONS
1 File
DOWNLOADS
7
ALL TIME DOWNLOADS
689
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
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)*...
mer än 6 år ago | 0
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...
mer än 6 år ago | 1
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
mer än 6 år ago | 0
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...
mer än 6 år ago | 0
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...
mer än 6 år ago | 2
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. ...
mer än 6 år ago | 0
| accepted
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...
mer än 6 år ago | 0
| accepted
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 ...
mer än 6 år ago | 2