Jayanti - MATLAB Central
photo

Jayanti


Last seen: 15 days ago Active since 2024

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 08/24 to 05/25Use left and right arrows to move selectionFrom 08/24Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
81 Answers

RANK
2,072
of 298,512

REPUTATION
30

CONTRIBUTIONS
0 Questions
81 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
 of 20,606

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 161,536

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
How we can use Deep learning toolbox for applying Convolutional Autoencoder ?
Hi Hanane, You can refer to the below offical Mathworks documentation link on convolutional Autoencoder: https://www.mathworks...

1 month ago | 0

Answered
Getting error in training residual network on CIFAR100 data
Hi suzwani, The error is due to presence of undefined values in the labels. Find undefined values in your data using “isundefin...

1 month ago | 0

Answered
Can I give multiple labels to a single file in ImageDatastore
Hi, To assign multiple labels to a single image in MATLAB, you can use a combination of “imageDatastore” and “arrayDatastore”. ...

1 month ago | 0

Answered
Datastore array exceeds maximum array size preference
Hi Nicola, I think the issue you are facing is due to maximum array size limitations in MATLAB. To resolve this try increasing ...

1 month ago | 0

Answered
Can't index images with imageIndex
Hi Sapio, This error is sometimes produced if you don't have the right toolbox installed for the function. You can try typing ...

1 month ago | 0

Answered
Question about function augmentedImageDatastore
Hi Panos, The “augmentedImageDatastore” in MATLAB does not create or store additional transformed samples as part of the datase...

1 month ago | 0

Answered
Inserting Table from Matlab into Powerpoint slide
Hi Nando, You can refer to the below MATLAB Answer thread which explain how to import matlab table to powerpoint: https://www....

1 month ago | 0

Answered
how to save the image to which viscircles (centers, radii) apply?
Hi Angelo, To save the images with the circles drawn in it you can capture the figure with the circles and save it. Please ref...

1 month ago | 0

Answered
Are there any functionality issues for tall arrays with Matlab version 2016b?
Hi Birtan, In MATLAB 2024a, you can handle missing values in a "spreadsheetDatastore" by using the "fillmissing" function. If y...

1 month ago | 0

Answered
Mean and standard deviation of circles in CT images
“imfindcircles” gives “centers” matrix and “radii” vector as its output. In order to calculate mean and standard deviation of ce...

1 month ago | 0

Answered
Finding circles in clusters
Hi Manny, I have used “imfindcircles” function to detect the circle in the image. You can refer to the below code for more de...

1 month ago | 0

Answered
How to detect the center of a cercle in an RGB image.
Hi Theodor, I have used “imfindcircles” function to detect the circle in the provided image. Please refer to the below code f...

1 month ago | 0

Answered
How to combine multiple inputs and a single output in a datastore?
Hi Sungkun, I found a similar Matlab answer related to your query. This answer explains how to create and combine datastores fo...

1 month ago | 0

Answered
combined datastore for regression model with multiple input
Hi Mariko, The issue might be due to the different read size properties of all the datastores. To resolve this, keep the same r...

1 month ago | 0

Answered
May I know how to insert a line in the editor dock?
Hi Diana, I did not particularly understand your use case. I assume you want to insert a horizontal line in the editor to visua...

2 months ago | 0

Answered
How do I find the number of circles in an image? I've given the code I used and output image below
Hi Soundarya, “imfindcircles” function returns the centers and radii of the detected circles. The number of circles is simply t...

2 months ago | 0

Answered
Editor , undocking into two GROUPS
Hi, There is a possible solution that you can try. Since you want half of the files in one window and the other half in another...

2 months ago | 0

Answered
How can I use imfindcircles function to tell me when there isn't any circle in the image?
Hi Eduardo, To determine if eyes are closed you can check whether “imfindcircles” function detects any circles. If no circles a...

2 months ago | 0

Answered
Undock Groups of Multiple Documents in Editor
Hi Lori, To undock the editor, click on the dropdown arrow in the upper-right corner of the editor window and select undock. ...

2 months ago | 0

Answered
Remove Bad File from Custom Datastore
Hi, I came across a similar question related to your query, where the "setdiff" function was used to filter out specific files....

2 months ago | 0

Answered
ReadSize property for the datastore
Hi Aleksey, You can write a custom function or loop to simulate reads and calculate the number of reads it takes based on the d...

2 months ago | 0

Answered
Building datastore on dataset with missing values
Hi Mohsen, When creating a datastore, you can handle missing values by using the "TreatAsMissing" and "MissingValue" name-value...

2 months ago | 0

Answered
Issue with MATLAB datastore
Hi Avleed, Tall arrays are one technique to work with out-of-memory data backed by a datastore. Tall arrays extend the datastor...

2 months ago | 0

Answered
How to draw a closed, smooth cubic spline curve varying the number of breaks?
Hi Celia, To create a closed curve, you can use a common parameter "t" that spans from 0 to 1 for all dimensions. Then, generat...

2 months ago | 0

Answered
Extracting points from a 3D Spline
Hi Ehtisham, To obtain a set of points along the spline, you can sample it at a finite number of locations. By generating a vec...

2 months ago | 0

Answered
Need help with import variables with readtable Function
Hi Thallon, Sometimes, CSV files may contain hidden characters or formatting issues as a result MATLAB does not interpret it as...

3 months ago | 0

Answered
Extract word matrix and context matrix from output of trainWordEmbedding / word2vec
Hi Daniel, By word matrix I assume you want the unique words in the document. When you use “trainWordEmbedding” to train a word...

3 months ago | 0

Answered
How to resize uicontol when GUI is dock ? Programatically
Hi, To ensure that components within a figure window automatically adjust when the window is resized- Set the “Units” property...

3 months ago | 0

Answered
Function of function in Symbolic Math Toolbox
Hi, You can define a functional using symbolic variables and functions by first creating a placeholder for any function of (x)...

3 months ago | 0

Answered
In Matlab app designer, how do I update the content of a table with data from a file specified by the user?
Hi, To update the table with data present in the file you can setup a callback function for the menu item created. This functio...

3 months ago | 0

Load more