回答済み
I know there are commands to use when finding the max values within an array, how would I do it through data from a graph?
Why don't you use Min/Max function on the variable you are plotting. That will give you min/max value along with the correspondi...

約1年 前 | 0

回答済み
How can I partition the data to training (70%) testing (20%) & validation (10%) such that mean & SD of each subsets same?
Hello Srinivas! You haven't mentioned with what kind of database you are working with. However if the data is related to image,...

約1年 前 | 0

回答済み
OFDM probability of error vs SNR
Hi Jose! No it should not take long time to simulate unless the video you are using is large. However if you want to plot BER ...

約1年 前 | 0

| 採用済み

回答済み
How to label a picture according to the color of pixels
Hi Muchen! You can use 'categorical' function to convert array into lable form.

約1年 前 | 0

解決済み


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

1年以上 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

1年以上 前

解決済み


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

1年以上 前

解決済み


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

1年以上 前

解決済み


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

1年以上 前

解決済み


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

1年以上 前

解決済み


Return the first and last characters of a character array
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

1年以上 前

解決済み


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

1年以上 前

質問


Train a deep learning model with filename in single csv file.
I want to train U-Net model for an application. Images are having multiple bands saved in different .tif file. To train DL model...

1年以上 前 | 1 件の回答 | 0

1

回答

解決済み


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

1年以上 前

解決済み


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

1年以上 前

解決済み


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

1年以上 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

1年以上 前

解決済み


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

1年以上 前

回答済み
Edge detection at a certain degree without using specific filter
This is the example to detect diagonal images. If you want to detect edges of soecific angle you may make your own filter and us...

1年以上 前 | 0

回答済み
Is it possible or correct to get psnr for the decompressed image greater than 90?
No, you can not get PSNR 90dB. If your image is 8 bit, maximum value of PSNR should be around 64dB if your algorithm is performi...

1年以上 前 | 0

回答済み
while truncating the original matrix size changes and error shows index in position 1 exceeds array bound
Mention the command that you are using to extract it. You can try arr(799:end,:);

1年以上 前 | 0

回答済み
How do I delete an old version of MATLAB if I cannot open it?
When you install a new version of MATLAB, whole new folder is created in 'Program Files' if you are using windows system; so the...

1年以上 前 | 0

回答済み
Unrecognized function or variable 'invertResidualLayer'
Hi, I have struggled with this issue a lot and I know the reason behind it. The problem is while you are calling 'net.Layers(1...

1年以上 前 | 0

| 採用済み

回答済み
What is the default loss function used in the U-Net implementation in MATLAB for semantic segmentation tasks?
If you are using the unetLayers function, default loss function will be "Cross-Entropy". You can check that on the documentation...

1年以上 前 | 1

| 採用済み

解決済み


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

1年以上 前

解決済み


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

1年以上 前

解決済み


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

1年以上 前

解決済み


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<https://imgur.com/x6hT6mm.png>> ...

1年以上 前

解決済み


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<https://imgur...

1年以上 前

解決済み


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<https://i.imgur.com/jlZDHhq.png>> ...

1年以上 前

さらに読み込む