Kanika Gupta
Followers: 0 Following: 0
Statistica
RANK
2.058
of 295.467
REPUTAZIONE
30
CONTRIBUTI
0 Domande
11 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
3
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
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...
quasi 4 anni fa | 0
Risolto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
circa 4 anni fa
Risolto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
circa 4 anni fa
Risolto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
circa 4 anni fa
Risolto
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 ...
circa 4 anni fa
Risolto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
circa 4 anni fa
Risolto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
circa 4 anni fa
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...
oltre 4 anni fa | 0
| accettato
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
oltre 4 anni fa | 0
| accettato
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 ...
oltre 4 anni fa | 0
| accettato
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...
oltre 4 anni fa | 0
| accettato
How can I convert a tiff image into DCOM?
You can do that using dicomwrite : dicomwrite( imread('image.tif'), 'output.dcm')
oltre 4 anni fa | 0
| accettato
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...
oltre 4 anni fa | 1
| accettato
combining four .png images
If you are looking of fusing multiple images, there is one similar question answered here https://in.mathworks.com/matlabcentral...
oltre 4 anni fa | 0
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...
oltre 4 anni fa | 0
what is wrong in this code..?
The insertAnnotation function excepts labels to be passed as na arguments. Try cloading labels using [bboxes,scores,labels]...
oltre 4 anni fa | 1
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...
oltre 4 anni fa | 1