photo

Abhishek

MathWorks

Last seen: 19 jours il y a Actif depuis 2022

Followers: 0   Following: 0

I'm an EDG Intern at MathWorks. DISCLAIMER: Any advice or opinions here are my own, and in no way reflect that of MathWorks.

Programming Languages:
MATLAB
Spoken Languages:
English

Statistiques

All
MATLAB Answers

0 Questions
16 Réponses

Cody

0 Problèmes
13 Solutions

RANG
2 368
of 300 381

RÉPUTATION
26

CONTRIBUTIONS
0 Questions
16 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
5

RANG
 of 20 941

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
29 332
of 168 477

CONTRIBUTIONS
0 Problèmes
13 Solutions

SCORE
169

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
how can I make goodness of fit test for my calculated AICc for a neuron's spike train
Hi Mustafa, I understand that you want to apply certain goodness-of-fit tests, namely Kolmogorov-Smirnov (KS) test and autocorr...

plus de 2 ans il y a | 1

Réponse apportée
invalid training data. the output size of [128 128 2] the last layer does not match the response size[ 1 1 2].
Hi Merzouk, I understand that you are trying to perform image segmentation using a U-Net network. Based on the error message, ...

plus de 2 ans il y a | 1

Réponse apportée
How to train neural networks for regression when the response variable is a vector
Hi Alex, I understand that you're trying to design a neural network for multivariate regression. To train a neural network for...

plus de 2 ans il y a | 0

Réponse apportée
Model Amplifier Gain Variation with Output Swing
Hi David, I understand that you're trying to replicate the IV characteristics of transistor in saturation region using Operatio...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Satellite communications toolbox with parallel computing
Hello Etai, I understand your objective to expedite certain operations on satellitescenario objects. However, it appears that s...

plus de 2 ans il y a | 0

Réponse apportée
Help on opening a .fid file
Hi Marina, To read the file, it is recommended to open it using the function fopen. Once you have opened the file, you can read...

plus de 2 ans il y a | 1

Réponse apportée
Data Logging on external SD Card with STM32F767ZI
Hi Lorenz, I understand that you have a requirement to log signal data into the SD card mounted on your target hardware. Consid...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Merged plots from saved figure
Hi Filip, Based on my understanding, it seems that you are facing challenge in retrieving data from the generated fig file. To ...

plus de 2 ans il y a | 0

Réponse apportée
RF Toolbox: Plotting S-parameters
Hi Arsat, I understand that you're trying to figure out difference between plot of S parameters using the matchingnetwork funct...

plus de 2 ans il y a | 0

Réponse apportée
pv array mppt under partial shading code
Hi Anchita, There are several issues with the code. Firstly, there is a missing function declaration at the beginning, which i...

plus de 2 ans il y a | 0

Réponse apportée
Convert Signal into a image for deep CNN input
Hi Christian, I understand you want to know how to convert an ECG signal into a 2D image to be used as input for a CNN model. ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Should I do event tree modeling in simulink or via algorithm ?
Hi Mrunal, After reviewing the requirements you have presented, it appears that Simulink would be the optimal choice for simula...

plus de 2 ans il y a | 0

Réponse apportée
select a pixel on the grayscale image to get a mask
Hi Alberto, I understand that you want to interactively select pixels in figures for certain masking application. The code you ...

plus de 2 ans il y a | 0

Réponse apportée
FIL支持的intel 开发板
Hi 帅帅 杨, Yes, 'X' marked cells here represent supported. All the blank cells are unsupported combinations. For further inform...

plus de 2 ans il y a | 0

Réponse apportée
In a Neural Network Regression Plot R means R^2?
Hi Joan, I guess you are trying to know what 'R' in the Neural Network Fitting plot signifies and is it different from 'R^2'. ...

plus de 2 ans il y a | 2

Réponse apportée
Write a loop to iteratively import files from a folder and do calculations with them
Hi, I assume that you have a working directory containing numbered .csv files that you want to import and work upon in sets ...

plus de 2 ans il y a | 0

| A accepté

A résolu


Get the area codes from a list of phone numbers
Given a string of text with phone numbers in it, return a unique'd cell array of strings that are the area codes. s = '508-647...

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

plus de 3 ans il y a

A résolu


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

plus de 3 ans il y a

A résolu


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a

A résolu


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

plus de 3 ans il y a

A résolu


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

plus de 3 ans il y a