Réponse apportée
Cure fitting - lsqnonlin
I initially inputted my guess, lower bound, and upper bound with the true optimized values obtained from a published paper. Surp...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
What would be the equation of the following surface?
You could try fitting a 2D Gaussian surface to it, e.g., with this FEX download, https://www.mathworks.com/matlabcentral/fileex...

plus de 2 ans il y a | 0

Réponse apportée
Finding Transformation Matrix of a viewer3d object
I think the 3x4 camera projection matrix P would be, h=gca(); camz=h.CameraTarget-h.CameraPosition; camy=-h.CameraUpVector; ...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Uploading .mat files that contain nested structs into a datastore
This example shows how to use a fileDataStore to read partial data from a .mat file https://www.mathworks.com/help/matlab/ref/m...

plus de 2 ans il y a | 0

Réponse apportée
Which optimization tool should be used for solving my convex optimization problem?
If, as you seem to, you have a non-quadratic (and therefore also nonlinear) convex objective function, then you must use fmincon...

plus de 2 ans il y a | 0

Réponse apportée
Fixed-distance of legend outside plot axes
is there any "simple" parameter (i.e., not position) which controls the vertical distance between the legend box and the upper e...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
the arc using the chord
Assume the chord is of length L and, with no loss of generality, assume also that it is aligned with the x-axis with end points ...

plus de 2 ans il y a | 1

Réponse apportée
Dot Multiplication in MATLAB
For matrices A and B, the rule is generally that A.* B is element-by-element multiplication a(i,j).*b(i,j), which means that nor...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Find paths in graph that satisfy specific condition
s=[17,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30]; t=[18,19,20,21,22,23,24,25,26,27,28...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Getting error in fmincon with below code how to correct it
You seem to be trying to minimize over a space of functionals, F. You cannot do that with fmincon. The objective must be a funct...

plus de 2 ans il y a | 0

Réponse apportée
How to plot a grouped bar chart?
https://www.mathworks.com/help/matlab/ref/bar.html#bthxce9

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Subdivide a figure with a grid (as in Timescope)
Something like this, perhaps? t=tiledlayout(2,2); for i=1:4, nexttile(t), plot(rand(1,4)); grid on; end background=axes('Po...

plus de 2 ans il y a | 0

Réponse apportée
vectorized operations on symbolic functions
syms x1 x2 x3; % symbolic variables y = x1^3/3 + x2^2/2 - x3; % symbolic function y X = rand(500,3); % each row representing a...

plus de 2 ans il y a | 1

Réponse apportée
How to add an image to the current axes without replacing existing plots
You can use hold fcontour(@(x,y) (x-50).^2+(y-50).^2,[20,80],'m'); hold on imshow(imread('cameraman.tif')); hold off h=gc...

plus de 2 ans il y a | 0

Réponse apportée
Restart Fmincon Optimization from Checkpoint File
No, unfortunately. Restarting from the last point is probably the best you can do. Although, apart from the interior-point algor...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Image semantic segmentation dimension layer why not match input and output
Below is what analyzeNetwork gives. Only you know what you want the dimensions of each of your activation maps to be. Tell us at...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Combining two arrays using a seconds order
number = randperm(10, 10) number2 = randperm(10, 10) I=ismember(number2,number(1:5)); number(1:5)=number2(I)

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
How can I calculate the unique centroids along with its radius range ?
load data; threshold=2; %Example input T=sortrows(table(Centroid, Radius),2) Centroid=T.Centroid; Radius=T.Radius; D=pdi...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Profile and debug load function
You could pursue your hypothesis by extracting the table from an object, then saving the idnlarx column to its own .mat file. Th...

plus de 2 ans il y a | 0

Réponse apportée
Struct field name with space or special character
Another option is to use dictionaries, which are a bit more similar to structs than tables, e.g. secretID=["Steve Rogers", "Ton...

plus de 2 ans il y a | 1

Réponse apportée
How do I mark all critical points on a graph of a function?
syms x; f=(sin(x)+(1/3)*(cos(5*x))); v=matlabFunction( diff(f) ); f=matlabFunction(f); x=linspace(0,2*pi,1e5); loc=find(g...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How do I add transparency to a plot in the Live Editor?
The syntax of giving an RGBA color setting seems to be a very old and undocumented feature, https://undocumentedmatlab.com/arti...

plus de 2 ans il y a | 1

Question


Plotting lines with quadruplets R-G-B-Alpha ?
It appears that in recent Matlab, I am able to append a 4th number to the RGB triplet, which appears to set either a transparenc...

plus de 2 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
identifying and isolating consecutive numbers
code that will split A into B = [1 2 3 4] C = [14 15] D = [23 24 25] It would be a bad idea to split A into separate variables,...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Modifying the objective function in order to meet the optimization variable boundaries
If the boundaries are given by simple lower and upper bound vectors lb and ub, you can do, function fun=objective(A,lb,ub) ...

plus de 2 ans il y a | 0

Question


Where is dlfeval tracing information stored?
When dlfeval() is used to call a function, the computation is traced in such a way as to later allow automatic differentiation v...

plus de 2 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
3D image alignment: How to extract rotation angles about "static" x,y,z axes from a 3x3 rotation matrix
Attached is the utility that I use. In alignment with what you are pursuing, the code does assume the rotation matrix is a colum...

plus de 2 ans il y a | 0

Réponse apportée
Divide circular rings in N angular portions
The problem is that the angular portions do not have the same number of elements That's because the image is discretized into p...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Error in table row subscript
In what way is this not what you want? Northpopulation = readtable("LN_NEXTGROWTH.csv"); %LN = []; <-----You don't need this ...

plus de 2 ans il y a | 0

Réponse apportée
how can I plot a 3-D helical trajectory
t=linspace(0,18*pi, 3000); plot3(2*cos(t), 2*sin(t), t/pi)

plus de 2 ans il y a | 0

Charger plus