Pakize - MATLAB Central
photo

Pakize


Duzce Universitesi

Last seen: 9 giorni fa Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Digital Image Processing, Optimization, Deep Learning

Spoken Languages:
English

Statistica

All
CodyFile ExchangeMATLAB AnswersFrom 01/12 to 05/25Use left and right arrows to move selectionFrom 01/12Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Domande
1 Risposta

File Exchange

6 File

Cody

0 Problemi
18 Soluzioni

RANK
206.234
of 298.572

REPUTAZIONE
0

CONTRIBUTI
2 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
0.0%

VOTI RICEVUTI
0

RANK
8.877 of 20.619

REPUTAZIONE
86

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
6 File

DOWNLOAD
47

ALL TIME DOWNLOAD
821

RANK
26.330
of 161.704

CONTRIBUTI
0 Problemi
18 Soluzioni

PUNTEGGIO
186

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • GitHub Submissions Level 1
  • MATLAB Mini Hack 2022 Participant
  • Personal Best Downloads Level 2
  • Revival Level 1
  • First Submission
  • First Review
  • Solver

Visualizza badge

Feeds

Visto da

Inviato


Resize your images in the folders and subfolders easily
In DL algorithms, we need to resize of the whole Image Folders with subfolders.Evenif augmentation resize , it is only in the co...

8 mesi fa | 2 download |

0.0 / 5

Inviato


Fruit Classification with CNN and Transfer Learning
A CNN classification for Apple, Avacado, Banana, Cherry and Orange

oltre un anno fa | 35 download |

0.0 / 5

Risolto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

quasi 2 anni fa

Risolto


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

oltre 2 anni fa

Risolto


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

oltre 2 anni fa

Risolto


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

oltre 2 anni fa

Inviato


Nonlinear regression using PSO and GA
These codes find the coefficents of a non linear model with GA and PSO

circa 3 anni fa | 2 download |

0.0 / 5

Inviato


NonLinear Equation System Solution with GWO
Please cite this article. The codes for the p1 equation in tihs article. Erdoğmuş, Pakize. "A new solution approach for non-line...

circa 3 anni fa | 4 download |

0.0 / 5

Inviato


Non_linear Equation Systems Solution with PSO, GWO and GA
In these codes a sample system of nonlinear equations is solved with GWO, PSO and GA. PSO and GA is Matlab function. GWO is adap...

circa 3 anni fa | 3 download |

0.0 / 5

Domanda


Is Matlab Transfer Learning performance compareable with Pyton Keras?
I wwant to compare transfer learning performances of the platforms. But I couldn't catch up Keras performance. Matlab is slover ...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Risposto
Clustering using segmented images RGB values
Hi, I find the solution to sort the RGB values from increasing or decreasing order.

oltre 3 anni fa | 0

Inviato


cifar10MattoImg
Converting Cifar10 Dataset to Desires Size png files with Folders

oltre 3 anni fa | 1 download |

0.0 / 5

Risolto


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

oltre 3 anni fa

Risolto


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

oltre 3 anni fa

Risolto


Given a matrix, swap the 2nd & 3rd columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

oltre 3 anni fa

Risolto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<https://i.imgur.com/jlZDHhq.png>> ...

oltre 3 anni fa

Risolto


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<https://imgur.com/x6hT6mm.png>> ...

oltre 3 anni fa

Risolto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

oltre 3 anni fa

Domanda


Clustering using segmented images RGB values
I segment my files according to the RGB values for each segmented area. But as it is estimated the same similar areas can be ind...

oltre 3 anni fa | 1 risposta | 0

1

risposta

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

quasi 11 anni fa

Risolto


Count from 0 to N^M in base N.
Return an array of numbers which (effectively) count from 0 to N^M-1 in base N. The result should be returned in a matrix, with ...

oltre 13 anni fa

Risolto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

oltre 13 anni fa

Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

oltre 13 anni fa

Risolto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

oltre 13 anni fa

Risolto


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

oltre 13 anni fa

Risolto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

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

oltre 13 anni fa