Risposto
How to use sigmoid layer?
The Classification Layer assign a Class to highest probability using cross-entropy loss. so the output of the layer before class...

oltre 2 anni fa | 0

Risposto
Can someone help me understand this code?
function throwAgain=MCO_throwAgain() define a function named MCO_thorAgain with no input and one output as throwAgain die=1; ...

oltre 2 anni fa | 1

Risposto
Finding correlation between two row matrices
Use fitlm function. it report you the R-squared value. and fit the linear model. example: x=1:0.1:10; y=exp(x); Fitted_model...

oltre 2 anni fa | 0

Risposto
Write a function called sum_rows
sum function get dim (dimension which summuation operate on it) as second arguments. so just use : sum(A,2) a function : fun...

oltre 2 anni fa | 0

Risposto
Comparisons between string and double are not supported.
in your code nettotrain is eather "YOLOv2" or "SSD", but in training process and preprocessData function and some other lines yo...

oltre 2 anni fa | 0

| accettato

Risposto
vectorization my user defined function
a simple quick solution is : time =[5,10;3,5;5,3;5,7;3,5]; cost =[6,3;4,3;7,10;10,5;14,9]; x=[1 1 1 1 1;2 2 2 2 2;1 2 1 2 1];...

oltre 2 anni fa | 1

| accettato

Risposto
How to use deep learning for interpolation properly
Hi, The Sin(x) function is a complete nonlinear function, on the other hand your network is too simple to handle such a nonlin...

oltre 2 anni fa | 1

| accettato

Risposto
Calling function from another .m file
type this in your script: function A = stringorder(A) [M,N]=size(A); for i = 1:M-1 for j = 1:M-1 curr = A(j); ...

oltre 2 anni fa | 0

Risposto
Resnet50 pretrained network?
i think you have connection issue to Matlab add-on Explorer. if no solution works, you can download the model from matlab github...

oltre 2 anni fa | 0

Risposto
Issues with contour plot of f(x, y) = x/y.
those lines are not y=0. those are continues of the contour lines around the region for your given values. near y=0, z goes to +...

oltre 2 anni fa | 1

Risposto
Gauss- Seidel Error tolerance
you have an unclear statement in while.after first iteration the err is 3x1 vector and tol is a scalar. change the statement to...

oltre 2 anni fa | 1

Risposto
Finding the minimum cost of a matrix
If i get that right, you have an assignment task. so you want to solve this : your constraint should be : which i repres...

oltre 2 anni fa | 1

| accettato

Risposto
Get path from running app
if you mean path of location which the app comes up, can't you just use pwd? i use it before in StartupFcn. and it work correct...

oltre 2 anni fa | 0

| accettato

Risposto
How to use dlgradient for computing second derivative?
Hi, You are using dlgradient wrong, first agument of dlgradient should be scalar. after 1 gradient from y respect to x. gradient...

oltre 2 anni fa | 0

| accettato

Risposto
What is the UB and LB in the following solver based approch optimisation question
your upper bound is infinity , lower bound is zeros: f = [2;3;2;-1;1]; Aeq = [3 -3 4 2 -1;1 1 1 3 1]; beq = [0;2]; lb = zer...

oltre 2 anni fa | 0

Risposto
Vectorized parametric step function
it is not about your code. i test it here : X = 0.05:0.05:1-0.05 X(12) X(12)<0.6 this result is wrong. because : X(12) - ...

oltre 2 anni fa | 0

Risposto
Converting 1-D indexed array to 2-D/3-D matrix
Your incresing order are usual for 3-D array. (X,Y,Z). just reshape the array, it would work: data = reshape(data,[2301 1201 24...

oltre 2 anni fa | 0

Risposto
repeated value of a vector
a naive way is to use a loop for every index: x = [1,5,15,2]; % for example num = 2; % number of repeat you want index=1; f...

oltre 2 anni fa | 0

| accettato

Risposto
running for loop gives error " Row index exceeds table dimentions "
your minrange and maxrange now are vecotors with two value.if you want to put it in for loop, in data you should mention wich co...

oltre 2 anni fa | 1

| accettato

Risposto
I am in basic level in MATLAB , In the code i got the error as unrecoganised function or variable
you use a function which is not introduced yet. For every function, Create a New script, copy your function in it, save it with...

oltre 2 anni fa | 0

Risposto
I want to know the difference between 1 and 1.0000
first of all log10(1) should be zero! but beside this, i think you are reporting your workspace wich is produced after some c...

oltre 2 anni fa | 0

| accettato

Risposto
regarding passing input as images to a function from two different folders
i think it is easier for you to use imagedatastore. use : images_left = imageDatastore('left_view_folder'); images_right = i...

oltre 2 anni fa | 0

Risposto
I want to Calculate how much Time my code take to simulate. What changes in the code should be considered
use : tic; %% Your Code toc % or Time = toc; the output of calling toc, return how much time it takes from tic, to toc.

oltre 2 anni fa | 0

| accettato

Risposto
How to form a function using 'for loop' without 'sym' command
Assuming you want nA be function of phi, you can use symsum for summuation : m = 150; Aos = 40; syms phi k nAi =@(phi) sym...

oltre 2 anni fa | 0

Risposto
How to solve single variable nonlinear trigonometric function?
maybe you forgot to use "d" in trigonometric functions. quick answer without optimizing the code: m = 0.7:0.01:1 ; b1 = 34.65...

oltre 2 anni fa | 0

| accettato

Risposto
Poor performance of Yolov2 network
beside your insufficient dataset mentioned by Aditya Patil. maybe try to set 'LearnRateSchedule' on 'piecewise', and drop Learn...

oltre 2 anni fa | 0

Risposto
Issues with yolo v2 network
Hi everyone. I had similar problem with yolo. The RCNN , FRCNN and FasterRCNN work very well on my dataset and test dataset. but...

oltre 3 anni fa | 0

Risposto
How to reshape array based on another array with nan values
b=logical(b); A=zeros(size(b)); A(b)=a; A(~b)=nan(sum(~b,'all'),1); output: A = 2 4 2 NaN 6 7 ...

oltre 3 anni fa | 1

Risposto
How to save each image generated in a for loop?
Hi ,you Can use imwrite for saving images. Also use save for 'volume' and 'location'. (you can make datastore and write a Read_f...

oltre 3 anni fa | 0

| accettato