A résolu


Swap between first and last
The idea is to swap between first and last row Ex = [1 2 3 4 5; 1 2 3 4 5; 1 2 3 4 5; 1 2 3 4 5; ...

plus d'un an il y a

A résolu


Swap between first and last column
The idea is to swap between first and last column Ex = [1 2 3 4 5; 1 2 3 4 5; 1 2 3 4 5; 1 2 3 4 5; 1 2 3 ...

plus d'un an il y a

A résolu


Swap between rows
The idea is to swap between second and second last row Ex = [1 2 3 4 5; 5 4 3 2 1; 1 2 3 4 5; 1 2 3 4 5; ...

plus d'un an il y a

A résolu


Write a MATLAB function that takes a positive integer ( n ) as input and returns the sum of all the even numbers from 1 to ( n ).
Write a MATLAB function that takes a positive integer ( n ) as input and returns the sum of all the even numbers from 1 to ( n )...

presque 2 ans il y a

Réponse apportée
How to access the n-th caller workspace?
Since getObjPath() is a Static method, why not just do, function pathOutMod=getOrigClassPath() origClassPa...

presque 2 ans il y a | 0

A résolu


Digits eliminate
Complete the function my_f(n,b) to return, for a given integer, the number obtained by removing the digits '0' and 'b'. If there...

presque 2 ans il y a

A résolu


Remove the diagonal of a square matrix
Some Cody problems ask solvers to remove columns (e.g., CP 7), and others ask solvers to remove rows (e.g., CP 44033). Write a...

presque 2 ans il y a

A résolu


Conditional transpose II
As in problem 60734, you're given two vectors, x and y, which might be row or a column vectors. Your task is to ensure that y ha...

presque 2 ans il y a

A résolu


Diagonal Product of A Square Matrix
For a matrix A, calculate the product of its diagonal elements. * Assume all input matrices are square & corresponding element...

presque 2 ans il y a

A résolu


Find out if the given number is a square of natural number.
For example , Input =4,output =1 Input=1,output=1 Input=0,output=0 Input=8,output=0

presque 2 ans il y a

A résolu


Describe n from right to left
If you were to describe the number 46 from right to left, you could say “one 6, one 4”, or 1614. The number 8663 would be “one 3...

presque 2 ans il y a

A résolu


Conditional transpose
You're given two vectors of the same length, x and y, which might be row or a column vectors. Your task is to ensure that y has ...

presque 2 ans il y a

A résolu


Beads on a Necklace (Convex Hulls)
We may describe a <http://en.wikipedia.org/wiki/Convex_hull convex hull> as a rubber band stretched around a list of points. Som...

presque 2 ans il y a

Réponse apportée
A parfor loop and random number generator
Use RandStream to give each worker a common random number stream. test_for_parfor(0) output = 60 291 379 808 77...

presque 2 ans il y a | 1

Réponse apportée
Error with 1dPooling in dlnetwork
You can use functionLayers to reformat the activations as the averagePooling layers require, but make sure you set the spatial d...

presque 2 ans il y a | 0

Réponse apportée
MATLAB Not Working After Update
I would try doing a clean reinstall, i.e., with all previous installation folders deleted. Failing that, you will probably need ...

presque 2 ans il y a | 0

Réponse apportée
Steepest descents methods algoritme for higher dimensional objective functions
See fminunc, fmincon, and perhaps also, https://www.mathworks.com/help/optim/ug/optimizing-a-simulation-or-ordinary-differentia...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
How can I keep the non-Matlab command window open after executing an executable by double clicking it?
There is very little context provided by the question, but if it is an executable created with the Matlab Compiler, then for exa...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
What is the easiest way to provide the user with a compiled version of a matlab function so that he can run without having the source?
If the idea is to obscure the source code, consider, https://www.mathworks.com/help/matlab/matlab_prog/building-a-content-obscu...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
How to give arguments to fmincon using ssest in system identification toolbox?
Perhaps as follows, opts=ssestOptions(SearchMethod='fmincon'); opts.SearchOptions.Algorithm='trust-region-reflective'; opts...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Trying to reshape/reformat data set into multiple sets
Using mat2tiles, downloadable from, https://www.mathworks.com/matlabcentral/fileexchange/35085-mat2tiles-divide-array-into-equa...

presque 2 ans il y a | 0

Réponse apportée
How to batch close the open variable window
You can try, com.mathworks.mlservices.MatlabDesktopServices.getDesktop.closeGroup('Variables')

presque 2 ans il y a | 0

Réponse apportée
Derivative of a multivariate function handle
Is this what you want? syms y [1 2] g = [y(1)*cos(y(2))+y(2)*sin(y(1))-0.5]; Jfun=matlabFunction(jacobian(g,y)) Jfun(0...

presque 2 ans il y a | 0

Réponse apportée
Determine if a point is inside a cube
Assuming the cube is not rotated, vertices = [ -1, -1, -1; -1, -1, 1; -1, 1, -1; -1, 1, 1; 1, -1,...

presque 2 ans il y a | 0

Réponse apportée
How to use splitapply function with a grouping variable which is a cell array in my table?
groupingVar = {'A', 'X'; 'A', 'Y'; 'B', 'X'; 'B', 'Y'; 'A', 'X'; 'A', 'Y'; 'B', 'X'; 'B', 'Y'; 'A', 'X'; 'A', 'Y'}; G=findgro...

presque 2 ans il y a | 0

Réponse apportée
find unique array cell with 2 field
>> findgroups(f(:,1),f(:,2)) ans = 1 1 3 2

presque 2 ans il y a | 0

| A accepté

Réponse apportée
Question regarding calling the destructor of a broadcast variable in parfor.
It is because you have 6 workers in your parpool. Therefore, a copy of Mage is sent to each worker, for a total of 6, during par...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
find unique array cell with 2 field
load('matlab_f.mat') table2cell(unique(cell2table(f),'rows'))

presque 2 ans il y a | 0

Réponse apportée
Problem with ploting involving function handle
Perhaps this is what you meant? N= 600; COMx_k = @(k) real(sum(1.*exp(-2*pi*1i*(k/N).*(1:N)' ),1)); %k=0:0.1:300 fplo...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
how to change the image from axial to sagittal
imtool3D() is not a native Matlab function, but I imagine if you permute your data permute(data,[3,1,2]) so that its slices are ...

presque 2 ans il y a | 0

| A accepté

Charger plus