photo

Sunny Choudhary


Last seen: 2年弱 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
10 回答

ランク
8,258
of 300,840

評判
6

コントリビューション
0 質問
10 回答

回答採用率
0.00%

獲得投票数
3

ランク
 of 21,092

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,238

コントリビューション
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