photo

Kanika Gupta


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
11 Answers

Cody

0 Problems
7 Solutions

RANK
2,138
of 300,553

REPUTATION
30

CONTRIBUTIONS
0 Questions
11 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 21,024

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
49,130
of 169,635

CONTRIBUTIONS
0 Problems
7 Solutions

SCORE
80

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Solver
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer

View badges

Feeds

View by

Answered
how to convert struct to vector?
If you requirement is to access strcuture of structures as cell arrays, try this: % For every sub strcuture C1 = num2cell(stru...

5 years ago | 0

Answered
legend for graphs by while loop
You can add legend in the plot command or use the legend function as mentioned in the documentation. Please follow the documenta...

5 years ago | 0

| accepted

Answered
Evaluation of Clustering Algorithms
I do not think we can use evalclusters() with k-medoids. This function supports only certain algorithms as explained in here

5 years ago | 0

| accepted

Answered
Create a matrix using offset elements of a vector
Try blktridiag: A = blktridiag([1;2],[3;4],[5;6],4); full(A) ans = 1 5 0 0 2 6 0 0 ...

5 years ago | 0

| accepted

Answered
How to read an excel table and limiting its size (# of rows) to only the data entries
Yes you can do that, read the documentation around readmatrix herehttps://in.mathworks.com/help/matlab/ref/readmatrix.html In y...

5 years ago | 0

| accepted

Answered
How can I convert a tiff image into DCOM?
You can do that using dicomwrite : dicomwrite( imread('image.tif'), 'output.dcm')

5 years ago | 0

| accepted

Answered
How I can generate an image and modify it with Matlab?
Try using this to create a blank image of desired size blankimage=zeros(200,200) imshow(blankimage) To change value at spec...

5 years ago | 1

| accepted

Answered
combining four .png images
If you are looking of fusing multiple images, there is one similar question answered here https://in.mathworks.com/matlabcentral...

5 years ago | 0

Answered
Is it possible to export a figure in Live editor as .eps
The export option does not show .eps extension. Can you try saving the figure as "name.eps" and see if that works. I tried chang...

5 years ago | 0

Answered
what is wrong in this code..?
The insertAnnotation function excepts labels to be passed as na arguments. Try cloading labels using [bboxes,scores,labels]...

5 years ago | 1

Answered
How to create training data for object detection
Refer to this link https://in.mathworks.com/help/vision/ug/training-data-for-object-detection-and-semantic-segmentation.html for...

5 years ago | 1