已回答
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...

3 years 前 | 0

已回答
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; ...

3 years 前 | 1

已回答
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...

3 years 前 | 0

已回答
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...

3 years 前 | 0

已回答
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...

3 years 前 | 0

| 已接受

已回答
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];...

3 years 前 | 1

| 已接受

已回答
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...

3 years 前 | 1

| 已接受

已回答
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); ...

3 years 前 | 0

已回答
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...

3 years 前 | 0

已回答
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 +...

3 years 前 | 1

已回答
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...

3 years 前 | 1

已回答
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...

3 years 前 | 1

| 已接受

已回答
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...

3 years 前 | 0

| 已接受

已回答
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...

3 years 前 | 0

| 已接受

已回答
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...

3 years 前 | 0

已回答
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) - ...

3 years 前 | 0

已回答
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...

3 years 前 | 0

已回答
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...

3 years 前 | 0

| 已接受

已回答
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...

3 years 前 | 1

| 已接受

已回答
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...

3 years 前 | 0

已回答
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...

3 years 前 | 0

| 已接受

已回答
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...

3 years 前 | 0

已回答
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.

3 years 前 | 0

| 已接受

已回答
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...

3 years 前 | 0

已回答
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...

3 years 前 | 0

| 已接受

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

3 years 前 | 0

已回答
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...

4 years 前 | 0

已回答
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 ...

4 years 前 | 1

已回答
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...

4 years 前 | 0

| 已接受