photo

Kanika Gupta


Last seen: 4년 초과 전 2020년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
11 답변

Cody

0 문제
7 답안

순위
2,132
of 300,369

평판
30

참여
0 질문
11 답변

답변 채택
0.00%

획득한 표
3

순위
 of 20,936

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
48,754
of 168,436

참여
0 문제
7 답안

점수
80

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

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

배지 보기

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...

4년 초과 전 | 0

문제를 풀었습니다


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...

대략 5년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 5년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

대략 5년 전

문제를 풀었습니다


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...

대략 5년 전

문제를 풀었습니다


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 ...

대략 5년 전

문제를 풀었습니다


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...

대략 5년 전

문제를 풀었습니다


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:...

대략 5년 전

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

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

5년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 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...

5년 초과 전 | 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]...

5년 초과 전 | 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...

5년 초과 전 | 1