photo

Sunny Choudhary


Last seen: 1년 초과 전 2023년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
10 답변

순위
8,214
of 300,369

평판
6

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
3

순위
 of 20,936

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,436

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Squares of all positive odd integers whose sum is greater than or equal to 3,000,000
Hi I debugged your code by printing i values. What mistake I can see in your code is its printing sum of squares of 1 to 89 fo...

2년 초과 전 | 1

답변 있음
Boie-Cox algorithm
The Boie-Cox algorithm, also known as the Cox-Boie algorithm, is an edge detection algorithm that aims to detect edges in an ima...

2년 초과 전 | 0

답변 있음
Which algorithm does ‘vpasolve’ use?
The `vpasolve` function in MATLAB is part of the Symbolic Math Toolbox and is used for solving systems of equations symbolically...

2년 초과 전 | 0

답변 있음
Boyer-Moore Search Algorithm
Here is a good source of a Boyer-Moore search algorithm Main features Performs the comparisons from right to left Pre-proces...

2년 초과 전 | 0

답변 있음
isosurface and isocaps algorithms
Hi The isocaps function in MATLAB is used to generate isosurface patch data from volume data. It creates a triangulated represe...

2년 초과 전 | 0

답변 있음
Updating legend for a plot with markers and errorbar
Just replace the last line of code with h = legend('Data 1', 'Error bars'); Here's the full code: x = 1:5; y = 3*x; err = s...

2년 초과 전 | 1

답변 있음
Help with Binary Search+Indices vector using Recursion
I have modified your code and we don't need n anymore All I am doing is In the base case search == data(mid) just returning mi...

2년 초과 전 | 0

답변 있음
How to graph normalized data?
To get the values of light intensity at each normalized cell length, you can follow these steps: 1. Import the data from the ...

2년 초과 전 | 0

답변 있음
King’s Graph and Grid Graph
Sure, here's an example code that can generate an adjacency matrix and plot a King's graph and a Grid graph using the built-in f...

2년 초과 전 | 0

답변 있음
how to code magic square without the built in command
Sure here's the working code: % Ask the user for an odd number n = input('Enter an odd integer for the dimension of the magic ...

2년 초과 전 | 1