Respondida
How to find area enclosed between two curves?
i don't think the code you include in your question content related to what you want. you have to vector, which are values of y...

alrededor de 2 años hace | 0

Respondida
How can I use images which have different size for CNN?
except some special cases, there is a limitation for forwarding different size arrays toward a CNN. after images pass the convol...

alrededor de 2 años hace | 0

| aceptada

Respondida
Solve the partial differential equation using Crank-Nicolson method.
Hi. you forget to put index in x vector in line 70, in equation you calculate Ur. that's the error. Ur(i,j) = 0.5*erfc(0.5*(x(...

alrededor de 2 años hace | 0

| aceptada

Respondida
Convert Python code (loop) to MATLAB
it depend on what class you want folds be. (an array, a cell , ... ) for example if all elements in list have same lenght, here...

alrededor de 2 años hace | 0

| aceptada

Respondida
Why is the eigenvalue a column of zeroes
for the system , is technically a solution. you should search for non-trivial solution. for this you should create null space ...

alrededor de 2 años hace | 0

Respondida
How to perform symbolic integration?
it doesn't seems your function has a clear close form primitive function. (or at least it is not easy for matlab symbolic toolbo...

alrededor de 2 años hace | 0

| aceptada

Respondida
How to keep GUI interface on top?
after the line that you open a file selector (uigetimagefile for example), use this: figure(FIGURE); it will bring up your GUI...

alrededor de 2 años hace | 0

| aceptada

Respondida
Extracting a section of data with conditions/limits
altitude = [0; 1; 2; 3; 4; 5]; time = ['08:05'; '08:06'; '08:07'; '08:08'; '08:09'; '08:10']; hours = str2num(time(:,1:2)); m...

alrededor de 2 años hace | 0

| aceptada

Respondida
Neural Network: Custom Loss Function: Minimize Range/Amplitude
From 2021a version, Matlab allows you to define and use customize data, layer, training loop, network and in as you need loss fu...

alrededor de 2 años hace | 1

| aceptada

Respondida
How to find the indices of similar arrays
The function unique return both unique array of input array and the indexes of original array in unique array. for example : A...

alrededor de 2 años hace | 0

Respondida
how to make loop to save value in excel without overwrite with the previous value filled?
for problem you mentioned maybe use writematrix function instead, and use option 'WriteMode' = 'append'. writematrix(DATAR,file...

alrededor de 2 años hace | 0

Respondida
How to create a box label datastore?
you can easily create and edit a cell. then convert it to table. here is an example: boxes = cell(10,2); %number of images x 2...

alrededor de 2 años hace | 2

| aceptada

Respondida
How can I plot three 2D functions in one 3D graph?
a simple way i thing is using plot3: plot3 function, plot a curve in 3D space. if you set all values of one component 0. the cu...

alrededor de 2 años hace | 2

| aceptada

Respondida
How can I fit a lower tail distribution for the lower 25% of the data?
Hi. here's a quick example: %X = zeros(1000,1); % Create data X = normrnd(2,1.5,1000,1); X_sort = sort(X); % sort data by t...

alrededor de 2 años hace | 0

| aceptada

Respondida
unable to optimise the following using linprog
HI. here's how you should do it: First i create a sample database for my self to use as parameters: (i use 100 points in 4D fea...

alrededor de 2 años hace | 1

| aceptada

Respondida
How can I create nested pie/doughnuts chart?
this might be useful: https://www.mathworks.com/matlabcentral/fileexchange/56833-donut but it's a lot simpler than charts in y...

alrededor de 2 años hace | 2

| aceptada

Respondida
Error using plot Data must be numeric, datetime, duration or an array convertible to double.
f is a symbolic expression not a function or vector. you can create a function with this expression, then plot the value of func...

alrededor de 2 años hace | 1

| aceptada

Respondida
How can I detect a triangle in my image?
Hi. in case your problem is exactly what you attached. here is an easy solution i can provide: I = imread('image.jpeg'); %read ...

más de 2 años hace | 0

Respondida
How can I solve an Optimization problem?
you can use fmincon, this function minimize function in a constraint problem. but only constraint here is bounds of lambda. so o...

más de 2 años hace | 0

Respondida
input layer and flatten mismatch
The Flatten layer support sequence input only. [1] As i understand from your network architechture you don't need Flatten Layer...

más de 2 años hace | 0

| aceptada

Respondida
Optimize a function with a sum of series
Hi , you don't need necessarily symboilic functionality for this problem. here is a simple solution. (you can run it in single ....

más de 2 años hace | 0

| aceptada

Respondida
ResNet-50 training problem
this note is from official MATLAB documentation for trainingOptions , i think it's exactly what you're looking for. "When t...

más de 2 años hace | 0

| aceptada

Respondida
How to convert text file to string?
use fscan or fread F = fopen('Untitled.txt'); Text = fscanf(F,'%c')

más de 2 años hace | 1

| aceptada

Respondida
Solving a nonlinear equation
the eqn as you defined is a vector-value multi-variable function. fzero takes a scalar-value single-variable function. so maybe...

más de 2 años hace | 0

| aceptada

Respondida
if statement is not working
the condition theta >= 41.19 & theta <= 90 is a logical vector with 20 values. if you want to calculate such a formula for those...

más de 2 años hace | 0

Respondida
Interp1 returns NaN for all values
According to documentation of interp1. the function returns NaN for points outside the domain. so check V and See if it's point ...

más de 2 años hace | 0

| aceptada

Respondida
A problem using the app designer
in PlotFitButtonPushed function which you plot your graphs, by using figure you create new figure out of your app.UIFigure. use ...

más de 2 años hace | 0

| aceptada

Respondida
How can I get the hessian matrix of a set of several functions?
The Hessian is officially defined for scalar value functions. depend on what application you want to use hessian, you may define...

más de 2 años hace | 2

Respondida
Find the nonlinear equation
If you have a form of equations they should obey you should try fit that function on your data. you can use eather fit functions...

más de 2 años hace | 0

Respondida
Integration of a function multiplied by an array
your y2 function return Array for every single number as it's input. syms x y1 = linspace(0,1,10); y2 = @(x) x.*y1; y2(1) a...

más de 2 años hace | 0

| aceptada

Cargar más