Respondida
how can i generate the random numbers for specific probabilites
v = [ 0, 15, 25, 35, 45, 20]; % values P = [0.01, 0.15, 0.20, 0.50, 0.12, 0.02]; % the correspond probability c ...

casi 7 años hace | 0

| aceptada

Respondida
combination and their sum
A = [4 2; 5 7; 3 1] m = size(A,1); b = dec2bin(0:2^m-1,m)-'0'; C = A((1:m)+m*b).' Result (each column is a co...

casi 7 años hace | 0

Respondida
How to calculate determinant of matrices without loop?
a(:,1).*b(:,2)-a(:,2).*b(:,1)-a(:,1).*b(:,3)+a(:,3).*b(:,1)+a(:,2).*b(:,3)-a(:,3).*b(:,2)

casi 7 años hace | 1

| aceptada

Respondida
Equality constraint in quadratic programming
Yes, il looks right to me. EDIT: No Q(3,1) must be 0 Q=[2 1 0; 1 4 0 ; 0 0 6]

casi 7 años hace | 0

| aceptada

Respondida
Find matching points from two coordinate systems
Look for the literature of image registration. For simple rotation/scaling/translation you can use Matt J's submission For mo...

casi 7 años hace | 0

Respondida
How vectorize this operation
n=10 m=3 x=rand(n,1) y=rand(m,1) % your method z = nan(length(x),1);% Just some fake data to define the size of z. could ...

casi 7 años hace | 1

| aceptada

Respondida
Solve Overdetermined Linear System
For overdetermined system the "\" returns least-square solution, meaning it doesn't solve exactly your system, but returnes the ...

casi 7 años hace | 1

| aceptada

Respondida
How to remove duplicates in matrix with condition
X = [1 10;2 20;3 30;3 31;3 32]; Xs=sortrows(X); [~,I]=unique(Xs(:,1),'last'); XResult = Xs(I,:)

casi 7 años hace | 1

| aceptada

Respondida
How to taker power of a permutaion matrix
You have 2 ways to compute it, from the permutation itself, or using the permutation matrix then raise a power of it. % Generat...

casi 7 años hace | 0

| aceptada

Respondida
How to define a covariance matrix that is positive semi definite?
L=randn(3); sigma=L'*L

casi 7 años hace | 0

Pregunta


path of a mfile not on search path
When an mfile is not on the search path or current path and when user types the name, MATLAB find it and issues a suggestion >>...

casi 7 años hace | 2 respuestas | 0

2

respuestas

Respondida
How to generate a random data vector that follows a constraint
This will generate uniform distribution (within to polytope) N = 10; Etotal = 0; E = -log(rand(N+1,1)); E = E(1:N,:)./sum(...

casi 7 años hace | 2

| aceptada

Respondida
Increasing Java Heap Memory of target machine so that EXE runs on target machine with MCR
According to my test, the stand alone app uses the sames amount of java heap memory than your MATLAB preferences. To set the a...

casi 7 años hace | 0

| aceptada

Respondida
Model of a crowd on concert venue or how to distribute random points according to the 2D window distribution
Torsten's rejection might bias the distribution. One of the better approach is to repell the points when they are close to each...

casi 7 años hace | 0

Respondida
How to genetate random number under constraint
Similar question has been answered in this thread

casi 7 años hace | 0

Respondida
How can I evenly distribute Points inside of a triangle?
Use mesh generator like MESH2D

casi 7 años hace | 1

| aceptada

Respondida
What code to make figure window fullscreen with subplot?
Check out This thread hope it's not obsolete. If you run on Windows WindowAPI (Jan's reply) is the only one which makes real ful...

casi 7 años hace | 1

Respondida
could anyone help me to calculate the euclidean distance for the matrix.
Hi Christtine, very good initiative. I think at least 90% of use-case would be p=2.

casi 7 años hace | 1

Respondida
What is the different between "null" command and "svd" command
Beside the trivial must do "reading the doc" you can just type edit null to see how NULL call SVD and keeps the singular vecto...

casi 7 años hace | 0

Respondida
Is this for-loop vectorizable?
I don't think sequential search can be vectorizable. You might improve a bit of the search by implementing dichotomy seach rath...

casi 7 años hace | 0

Respondida
How to draw random number from a conditional distribution
Your problem is not well defined, there are many Y that can meet such requirement (if you guys think it is impossible beside a s...

casi 7 años hace | 0

Respondida
How do i write a code which can calculate the cross production of two vectors?
If A and B are 5 x 1 null([a;b]) returns a (5 x 3), 3 vectors in R^5 basis of NULL(SPAN(a,b))

casi 7 años hace | 0

Respondida
Does inpolygon work for latitudes and longitudes on the surface of the earth?
A polygon in lat/lon will NOT map to a "polygon" on the sphere. A "polygon" on the sphere composed by edges that are grand circl...

casi 7 años hace | 0

Respondida
Format number in the same format as disp
>> x=logspace(1,3,10) x = 1.0e+03 * 0.0100 0.0167 0.0278 0.0464 0.0774 0.1292 0.2154 0.3594...

casi 7 años hace | 1

Respondida
submitWithConfiguration not working in matlab R2019b
The problem is in the statement parts = parts(conf); In MATLAB 2019B, you cannot use the same name of variable and function, b...

casi 7 años hace | 9

| aceptada

Respondida
Getting error: Maximum recursion limit of 500 reached
Don't call name your GUI "GUIDE"

casi 7 años hace | 0

| aceptada

Respondida
How to use cellstr() without losing whitespace character?
Pay attention to the difference between the two last commands >> c1={'1' '12' '123'} c1 = 1×3 cell array {'1'} ...

casi 7 años hace | 1

| aceptada

Respondida
How to get number of occurrence in a list with gaps?
(EDIT for R2016a, not supported for strings.) % dummy test data d={'1/1/2019' '1/1/2019' '2/1/2019' '4/1/2019' '4/1/2019' ...

casi 7 años hace | 0

| aceptada

Respondida
I keep getting a 'parse error' at '='
Test wth "==" if (y==0)

casi 7 años hace | 0

| aceptada

Cargar más