Ergin Sezgin - MATLAB Central
photo

Ergin Sezgin


Last seen: 1 year 前 自 2022 起处于活动状态

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
Turkish

统计学

All
MATLAB AnswersCodyFrom 09/22 to 04/25Use left and right arrows to move selectionFrom 09/22Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

3 个提问
14 个回答

Cody

0 个问题
9 个答案

排名
2,483
of 298,102

声誉
24

贡献数
3 个提问
14 个回答

回答接受率
33.33%

收到投票数
2

排名
 of 20,534

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
35,952
of 160,343

贡献数
0 个问题
9 个答案

评分
116

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Promoter
  • Thankful Level 1
  • Knowledgeable Level 2
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已解决


It dseon't mettar waht oedrr the lrettes in a wrod are.
An internet meme from 2003 (read more here) asserted that readers are relatively insensitive to letter order in words, so long a...

1 year 前

已解决


The Goldbach Conjecture
The Goldbach conjecture asserts that every even integer greater than 2 can be expressed as the sum of two primes. Given the eve...

2 years 前

已解决


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

2 years 前

已解决


Kaprekar Steps
6174 is the Kaprekar constant. All natural numbers less than 10,000 (except some with same digits) can be reduced to 6174 in the...

2 years 前

已解决


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

2 years 前

已解决


Calculate the mean of each half of a matrix
Given a matrix with an even number of columns, n, return a 1-by-2 row vector where the first element is the mean of all the elem...

2 years 前

已解决


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

2 years 前

已回答
Draw multi graphs in one figure
Hi Reji, You can use subplot function to create axes in tiled positions which might be useful for your case. However, If you n...

2 years 前 | 0

| 已接受

提问


Is it possible to migrate to MATLAB App Designer (.mlapp) using a properly structured .m file?
Hello, I wonder if it is possible to migrate a properly structured .m file to App Designer. By proper I mean that it is complet...

2 years 前 | 1 个回答 | 0

1

个回答

已回答
Processing data from multiple files
Hi Dolev, Try using curly brackets "{}" instead of parentheses. Alternatively, take a look at datastore which is another option...

2 years 前 | 0

已回答
centroid for each slice along one axis in a .nrrd file
Hey, You can isolate the layers, binarize them with imbinarize function, manipulate the regions by morphology if necessary, and...

2 years 前 | 0

| 已接受

已回答
How can I color an image?
Hello, Reshape function only changes the size of an array but keeps the number of elements same. For a color image in RGB color...

2 years 前 | 1

提问


Communication between external softwares and standalone app from Appdesigner
Hello, I am working on a standalone application project which actively needs to communicate with several external softwares. Th...

2 years 前 | 1 个回答 | 0

1

个回答

已回答
detect the largest red object, its centroid and put bounding box around it
You can use regionprops function as the following to get area value of each individual region and then sort the table and get th...

2 years 前 | 0

已回答
Adding certain elements in an input vector and outputting a new vector with those sums.
Hello Coleman, It is relatively an easy task and seems like a homework so let me just help on the algorithm instead of the code...

2 years 前 | 0

已回答
How to replace matrix elements by using statements?
Hello Hasancan, You should use both rows and columns in two for loops to check and adjust each element in a 2D matrix. for i ...

2 years 前 | 0

已回答
How to Update Label Text from Custom Function in AppDesigner?
Hello Arda, Try using drawnow to update figures and callbacks as the following: function analyse_result = analyse(path_dir...

2 years 前 | 0

| 已接受

已回答
Find the position of numbers in array
Hello Marco, Following code might help with your task: rng(2022) inputArray = 100*rand(1,1820); % you should use your array ...

2 years 前 | 0

已回答
Remove numbers during preprocessing
Hello Rachele, Try using the following code with your string array. words = ["stringOne", "stringTwo", "2022", "stringThree"] ...

2 years 前 | 0

已回答
what we should use instead of 'datetime'
Hello Arash, As far as I understand from your case, you have an array of seconds which is a duration. If its data class is not ...

2 years 前 | 0

| 已接受

已回答
Image processing k-mean clustering
Hello Sam, You can use Image Segmenter and Image Region Analyzer Apps to accomplish your task, without using k-means. Check the...

2 years 前 | 1

| 已接受

已解决


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

2 years 前

已解决


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

2 years 前

已回答
Moving a slider and taking the data to calculate an output in the edit field section, appdesigner
Hello Fatma, FrequencyHzSliderValueChanged(app, event) seems like a callback rather than a public or private function. It invok...

2 years 前 | 0

已回答
Remove duplicate on rows
Hello Heman, Try using unique function which returns only the unique elements in the array. newData = unique(yourData); If yo...

2 years 前 | 0

提问


Trouble with sending emails - Can't send command to SMTP host
SOLVED Hello all, I am currently using sendmail function on MATLAB R2022a to periodically send emails to designated email adr...

2 years 前 | 0 个回答 | 0

0

个回答