Respondida
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...

más de 7 años hace | 1

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

más de 7 años hace | 4

| aceptada

Respondida
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...

más de 7 años hace | 1

Respondida
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...

más de 7 años hace | 3

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

más de 7 años hace | 0

| aceptada

Respondida
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 ...

más de 7 años hace | 1

Respondida
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 ...

más de 7 años hace | 2

| aceptada

Respondida
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'; ...

más de 7 años hace | 1

| aceptada

Respondida
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...

más de 7 años hace | 0

Enviada


Integration Demo
A demo to visualize the integral of an arbitrary user-entered function. 任意の関数の積分計算を可視化表示するデモです

más de 7 años hace | 1 descarga |

Thumbnail

Enviada


RootFinding Demo
A demo of root-finding using Newton’s Method. ニュートン法を用いて解の探索を行うデモです

más de 7 años hace | 2 descargas |

Thumbnail

Enviada


Divergence-Curl Demo
A simple, easy-to-use visualization tool for vector fields. ベクトル場の発散、回転を可視化表示します

más de 7 años hace | 2 descargas |

Thumbnail

Enviada


Demo Files for "Optimizing Lookup Tables" Seminar
Demo Files for "Optimizing Lookup Tables" Seminar (presented at MATLAB Expo 2011)

más de 7 años hace | 1 descarga |

Enviada


Guitar Tuner Demo from MATLAB Expo 2011 in Tokyo
This takes audio input and calculates the frequency for use in tuning a guitar

más de 7 años hace | 2 descargas |

Thumbnail

Enviada


Video Sudoku Solver
Solves a sudoku with a web camera and then displays it while tracking the original video feed.

más de 7 años hace | 6 descargas |

Thumbnail

Enviada


Function Parameter Slider
Use continuously updating sliders to view how a function changes as its input parameters change

más de 7 años hace | 2 descargas |

Thumbnail

Enviada


Graphical Demonstration of Convolution
An interactive program that provides graphical insight into how convolution operators work.

más de 7 años hace | 2 descargas |

Thumbnail

Enviada


Make figures the same size
Just as the title says, it resizes figures to be the same size.

más de 7 años hace | 1 descarga |

Enviada


Extrude a ribbon/tube and fly through it!
Extrude a 2D curve along a 3D path to create tubes/ribbons and then fly though it

más de 7 años hace | 7 descargas |

Thumbnail

Respondida
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...

más de 7 años hace | 1

Respondida
I need some help,(i.e) my image is 192x192, i need to divide it into 3x3,and from each 3x3 block,by taking center pixel value as threshold, i need to compare with other neighbouring 8 pixel values, if that value is less than threshld, put 0, else 1
If you have the Image Processing Toolbox, you can use <http://www.mathworks.com/help/images/ref/blockproc.html BLOCKPROC> , whic...

más de 7 años hace | 0

Respondida
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=...

más de 7 años hace | 0

Respondida
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...

más de 7 años hace | 0

| aceptada

Respondida
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...

casi 8 años hace | 1

| aceptada

Respondida
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...

casi 8 años hace | 2

Respondida
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]...

casi 8 años hace | 1

Respondida
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...

casi 8 años hace | 3

| aceptada

Respondida
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...

casi 8 años hace | 0

| aceptada

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

casi 8 años hace | 1

Respondida
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...

casi 8 años hace | 0

Cargar más