Answered
Execution of script nchoosek as a function is not supported
Please do that which nchoosek you must find somewhere similar to the above or this C:\Program Files\MATLAB\R2022a\toolbox\ma...

4 years ago | 0

Answered
time date to datenum and datenum to datetime
I make a round conversion so you can convert any format to any other by using the appropriate substeps dt=datetime(2022,04,28,1...

4 years ago | 1

| accepted

Answered
Hello everyone.I'm new to the community, please help me to use matlab to calculate the volume of this 3D Shape
u=linspace(0,1,31); v=linspace(0,2*pi,37); [u,v]=meshgrid(u,v); x=(1-u).*(3+cos(v)).*cos(4.*pi.*u); y=(1-u).*(3+cos(v)).*sin...

4 years ago | 2

| accepted

Answered
VertCat unique rows of multiple tables.
% dummy test data Filename1=["a"; "b"; "c"]; Data1=["a1"; "b1"; "c1"]; T1=table(Filename1,Data1,'VariableNames',{'Filename','...

4 years ago | 0

| accepted

Answered
how to multiply a curve (in a plot) by -1, if you do not have the original data? (I only have the plotted data.)
Plot your figure, you can then retrieve the data with x = get(findobj(gcf,'Type','line'), 'xdata') y = get(findobj(gcf,'Type',...

4 years ago | 0

Answered
I am looking for a way to include duplicates into ismember function
Why use ismember at all (at least in that way)? O = Osw( interp1(a,1:length(a),y, 'nearest'))

4 years ago | 1

| accepted

Answered
How to calculate the width that contains 60% of the total area of peaks?
load Intensity.mat load position.mat ifun=@(x) interp1(x2,Int,x,'linear','extrap'); I0=integral(ifun,x2(1),x2(end)) x = fz...

4 years ago | 0

Answered
Rotate an Ellipsoid towards a point
axlgt = [5,1,1]; P = [5;6;7]; [~,i] = max(abs(axlgt)); ei = accumarray(i,1,[3,1]); a=cross(P,ei); T=makehgtform('axisrota...

4 years ago | 0

| accepted

Answered
How to find a permutation matrix to turn a general hermitian matrix into a block diagonal one?
A = [1, 0, 1; 0, 1, 0; 1, 0, 1], p=symrcm(A) A(p,p)

4 years ago | 0

Answered
Matrix is singular, RCOND=NAN for a OLS regression
First make sure your data X and Y contain only finite elements (no NaN, Inf, or such). Instead of b = inv(X'*X) * X'*Y; try (...

4 years ago | 1

Answered
Multiplying f(x) with f(-x)
For polynomial funtions with coefficients in P, f(x)*f(-x) is a polynomial as well with coefficients Q that can be computed like...

4 years ago | 0

Answered
Eigenvectors not changing with constant parameter
"Could someone figure out the issue?" But there is no issue beside thet fact that you expect something that not going to happen...

4 years ago | 0

| accepted

Question


answer orange badge abadonned?
For active members, the little orange badge is no longer displayed and will be abandonned? My "Editor" badge disappears when m...

4 years ago | 3 answers | 0

3

answers

Answered
Manipulating a multidimensional array.
Try this: kx = linspace(-0.5,0.5,15); ky = linspace(-0.5,0.5,15); [KX,KY] = meshgrid(kx,kx); alpha_R = 0.18851; M = lengt...

4 years ago | 1

| accepted

Answered
fminsearch error 'Argument 3 must be an options structure'
You need to create options using optimset function

4 years ago | 1

| accepted

Answered
Optimise comparing multidimensional matrices
I simply code by guessing what you have behind de scene. You better tell us exactly what are class/size of the variables in your...

4 years ago | 1

| accepted

Answered
Undefined function 'num2Str' for input arguments of type 'double'.
correct spelling is num2str with a lower-case "s"

4 years ago | 0

Answered
i have a single row vector contains 0s and 1s and want to convert every 3 bits into integer how can i do that??
x=[0 1 0 1 1 1 ]; bin2dec(char(reshape(x,3,[])+'0')')

4 years ago | 0

Answered
Pass m-function as parameter in m-function
Here is how you pass a function handle (it can be mfile, pfile, mexfile, appfile, anything that can run under MATLAB) func1(val...

4 years ago | 0

| accepted

Answered
Convert a Column Vector to Matrix
x = [1 2 3 4 5 6] y = reshape(x, 2, [])'

4 years ago | 0

Answered
How to slice an array across multiple dimensions with two limit arrays?
This should work X=rand(6,6,6); A=[1 2 3]; B=[6 5 4]; cidx = arrayfun(@(i1,i2) i1:i2, A, B, 'unif', 0); Y = X(cidx{:})

4 years ago | 0

| accepted

Answered
Function ISMEMBER indexes only the first value and leaves the rest
ismember returns in the first argument the logical array, not the index. If you want the firs index (idx will be empty if there ...

4 years ago | 0

Answered
random bit to a block of some fix length?
x='01100010101001010100010001000001111111000101111' bl = 4; xb=x-'0'; % convert to binary array xb(end+(1:mod(-end,bl)))=0;...

4 years ago | 1

| accepted

Answered
Select elements of a matrix using an array (of indices)
A=[164 101 2733 2801 323 410 20 24 556 494 498 345 ...

4 years ago | 0

| accepted

Answered
How to find a cross section of a 'Boundary' plot with non planar data?
Assuming the plane is z=0 (otherwise you should so a solid coordinates transformation to bring to this assumption) You have to ...

4 years ago | 0

| accepted

Answered
Finding change in direction
Your code will crash since indexing will be overflowed. Just an idea you might do the sign comparison of the entire array [r,...

4 years ago | 0

Answered
Trying to understand the single-sided FFT
Multiplication by 2 for single side is just a convention. To me it doesn't have any solid backup. The convention is stated in pa...

4 years ago | 1

Answered
Why is my if counter not working
Your for loop index is probably wrong, n should be scalar n = 1:2:10 ... for i = 1:n ... end or perhaps you want this ...

4 years ago | 0

Answered
Create a matrix where every row adds to a number and within the matrix represents every possibility of the row combinations
A non recursive engine AllVL1 in FEX >> allVL1(4,3) ans = 0 0 0 3 0 0 1 2 0 ...

4 years ago | 1

Answered
connect lines on scatter plot showing arrows
Try this quiver(xpre, ypre, xpost-xpre, ypost-ypre, 'off')

4 years ago | 0

| accepted

Load more