回答済み
How to create a loop to sum across columns conditional on index matching?
result = [unique(A(:,1)) grpstats(A(:,2:end),A(:,1),@any)] % Keep it binary or result = [unique(A(:,1)) grpstats(A(:,2...

7年以上 前 | 1

回答済み
グレースケールの3次元マッピング
たとえば: I_RGB = imread('peppers.png'); I_gray = rgb2gray(I_RGB); h = surf(I_gray); % surf関数で表面を作成する h.EdgeColor = 'n...

7年以上 前 | 4

| 採用済み

回答済み
Getting NaN values in neural network weight matrices
As of R2016b, you could use the <https://www.mathworks.com/help/matlab/ref/rmmissing.html RMMISSING> function. Heave_datase...

7年以上 前 | 1

回答済み
Vectorisation of a simple for loop
Just wondering, but what is your purpose in vectorizing that code? If it's to make it faster, I don't think you can do much bett...

7年以上 前 | 3

回答済み
複数のテキストデータから一つの散布図の作り方
2番目以降のscatterplotに、最初に作成されたscatterplotのfigureハンドルを与えれば、figureが再利用できます。 たとえば: h = scatterplot(randn(100,2)); hold on; ...

7年以上 前 | 0

| 採用済み

回答済み
I have a vector like x=[2 3 1 5],how could I generate a vector like [1 2 1 2 3 1 1 2 3 4 5]?
x = [2 3 1 5] y = arrayfun(@(a)1:a,x,'uniform',0) y = cat(2,y{:}) y = 1 2 1 2 3 1 1 ...

7年以上 前 | 1

回答済み
How to find number of neigbours of a pixel in binary image?
Here are two ways to do it: numberNeighboringPixels = 2; % Can also be 1 or 3 BW1 = rand(15,60) > 0.9; % Just a ...

7年以上 前 | 2

| 採用済み

回答済み
Replace NaN values with values based on same group and other group?
I think this should work. % Sample data T = cell2table({'ID1' 100 'aaa'; 'ID1' nan 'bbb'; ...

7年以上 前 | 1

| 採用済み

回答済み
Surf respresentation of a transfer function depending on the frequency and the gain of the feedback
You can loop over different values of "gain" and collect the results in a matrix and then plot it as a surface. rng(0) s...

7年以上 前 | 0

回答済み
hour to hour minute second conversion
There's a <http://www.mathworks.com/help/matlab/date-and-time-operations.html lot of really good new functionality for working w...

7年以上 前 | 1

回答済み
Intersection of two sfit planes?
This works for me: %% 1. Making some test coefficients c1=1; c2=2; c3=3; c4=4; c5=5; p1=-1.1; p2=2.2; p3=-3.3; p4=...

7年以上 前 | 0

回答済み
Matrix version of quadprog?
You can convert this into a form usable by QUADPROG by noting the identity: tr(X'*H*X) == vec(X)' * kron(I, H) * vec(X) wh...

8年弱 前 | 0

| 採用済み

回答済み
non linear minimization problem
It depends on what you mean by "minimize". Do you mean the sum of squares, sum(E.^2)? If so then it's a quadratic programming...

8年弱 前 | 1

| 採用済み

回答済み
How to perform quadratic optimization
Here is how you might solve it using QUADPROG. Note that you don't need to do anything symbolic using "sym". L = length(ESF...

8年弱 前 | 2

回答済み
Slow Find Loop no vectorisation
FOR loops are *not* necessarily slow. This is in R2016a. %% Make some data... rng(0); image = randi(2^16,[30 40 50]...

約8年 前 | 1

回答済み
Finding surface height at x,y coordinates
Instead of GRIDDATA, I think "scatteredInterpolant" is what you want. This creates an object that you can use to query points fr...

約8年 前 | 3

| 採用済み

回答済み
how to determine similar values in 2 equally-sized matrices (for non-zero elements which are in similar positions) ?
A = [ 1 2 4; 5 0 6]; B = [0 2 5; 2 0 6]; Final_output = (A==B) & (A ~= 0) This gives Fi...

約8年 前 | 0

| 採用済み

回答済み
Need help with cylinders
% Make a figure (I like my figures in black) colordef(figure,'black'); % Draw a parameterized surface [TH...

約8年 前 | 1

回答済み
How do I read in a binary file that has a very unique data structure?
Would it be possible to use FREAD with the precision specified? For example: %% Just making some test data... (16bit,12bit...

約8年 前 | 0

回答済み
How to remove duplicate nodes from generated path and segments inbetween?
If you have R2015b or newer, there are built-in functions to do this. In particular, <http://www.mathworks.com/help/matlab/ref/g...

約8年 前 | 0

回答済み
Modified Outerjoin function code
This requires a bit more creativity, but this is how I would do it. %% 1. Making the data (see my comment at the end) A ...

約8年 前 | 0

回答済み
Modified version of VLOOKUP for Matlab
You can do this using <http://www.mathworks.com/help/matlab/ref/outerjoin.html OUTERJOIN> . A = table; A.ID = [1;1;2]; ...

約8年 前 | 1

| 採用済み

回答済み
NSP (Nurse Scheduling Problem)
This blog post may be of help: <http://blogs.mathworks.com/loren/2016/01/06/generating-an-optimal-employee-work-schedule-usin...

8年以上 前 | 2

回答済み
how can I find the minimum distance from convex boundary
I like Matt J's SVM-based idea. It is actually very straightforward to solve this as a maximum separation problem. Reference:...

10年以上 前 | 3

回答済み
Is there a way to speed up matrix calculations by Parallel Computing Toolbox?
As others have pointed out, this will be difficult to parallelize for a single run, since you are integrating forward in time, a...

10年以上 前 | 0

| 採用済み

回答済み
Find all largest empty circles in a list of points
You don't have to try all combinations. You just need to calculate the Delaunay triangulation. Assuming that no 4 points lie on ...

10年以上 前 | 2

回答済み
Matlab executable requires 8.1 of MCR
You could also download it yourself here: <http://www.mathworks.com/products/compiler/mcr/index.html> Version 8.1 correspo...

10年以上 前 | 3

| 採用済み

回答済み
Remove the spurious edge of skeleton
I think there must be a more efficient way to do it, but this at least works. BWDISTGEODESIC starts at a given point, and then c...

10年以上 前 | 11

| 採用済み

回答済み
How to connect points horizontally and vertically in non-rect grid?
Idea 1. Use SURF [x,y] = ndgrid(0:0.1:2); %Just making random data x = sin(x).*y; y = x+y.^2; figure, surf(x,y,z...

10年以上 前 | 0

| 採用済み

さらに読み込む