photo

Rohit Pappu

Last seen: 6 jours il y a Actif depuis 2020

Followers: 0   Following: 0

Programming Languages:
C++, Javascript

Statistiques

All
MATLAB Answers

0 Questions
88 Réponses

Cody

0 Problèmes
151 Solutions

RANG
686
of 300 365

RÉPUTATION
112

CONTRIBUTIONS
0 Questions
88 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
11

RANG
 of 20 933

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 150
of 168 262

CONTRIBUTIONS
0 Problèmes
151 Solutions

SCORE
2 052

NOMBRE DE BADGES
10

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • CUP Challenge Master
  • Knowledgeable Level 4
  • Revival Level 3
  • 6 Month Streak
  • MATLAB Central Treasure Hunt Finisher
  • Introduction to MATLAB Master
  • Promoter
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Export data via data inspector
Hi Beni, As of R2023a, Simulink.sdi.exportRun accepts vector of runID as input argument. Please refer to this documentation ...

plus de 2 ans il y a | 0

Réponse apportée
Injecting (and combining) a sine wave after a period of time
A plausible solution is as follows Generate the required sinusoidal signal %define sine wave %%Time specifications: Fs = ...

plus de 4 ans il y a | 0

Réponse apportée
finding peaks in Simulink
findpeaks accepts only vector data as it's input arguments. A possible workaround would be to use a Buffer block in between Simu...

plus de 4 ans il y a | 0

Réponse apportée
User Defined Montage but filling 12x8 Array
A possible workaround is as follows % Create an empty cell array of size 12x8 imgList = cell(96); % calculate the cell arra...

plus de 4 ans il y a | 0

Réponse apportée
Calculate mean distance between lines in an image
For extracting the straight lines, a plausible solution is as follows Find edges in the image using edge function Apply hough ...

plus de 4 ans il y a | 0

Réponse apportée
How to create 95 and 99 percent confidence ellipses around my data
Please refer to this answer for leads on how to plot confidence ellipses

plus de 4 ans il y a | 0

Réponse apportée
Plot 2D Gaussian spot and histograms of horizontal and vertical axis in one figure
The above diagram can be created using subplot (for creating the grid of plots) and camroll (for rotating the histogram) % Crea...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Finding circle in image
Please refer to the following answer for some tips on how to improvecircle detection using regionprops https://www.mathworks.co...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to convert augmented datastore to image datastore?
For augmening input data in the pixelLabelImageDatastore, the Data Augmentation property of pixelLabelImageDatastore can be set....

plus de 4 ans il y a | 0

Réponse apportée
Which App in Machine Learning and Deep Learning is best for strongly nonlinear and chaotic data?
For Nonlinear datasets, it is recommended to use fitnlm. An example about predicting using non linear regression can be found he...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to solve a transcendental differential equation?
Please refer to this community answer

plus de 4 ans il y a | 0

Réponse apportée
how can we generate a vector of length 100 with random number in between 0 and 1 with uniform probability such that sum of these numbers/100 is equal to 0.75
Please use randfixedsum, available on the File Exchange https://www.mathworks.com/matlabcentral/fileexchange/9700-random-vecto...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to create a dataset with an Epsilon Skew Normal distribution?
Currently, there isn't any MATLAB function to generate Epsilon Skew Normal DIstribution, but there is a workaround for it. Plea...

plus de 4 ans il y a | 0

Réponse apportée
How can we solve this, how to convert mupad to live script?
Please refer to the following link - https://www.mathworks.com/help/symbolic/convert-mupad-notebooks-to-matlab.html

plus de 4 ans il y a | 0

Réponse apportée
relative error of machine epsilon
According to the formal definition, the approximation of Machine Epsilon is as follows epsilon = 1.0; while (1.0 + 0.5 * eps...

plus de 4 ans il y a | 0

Réponse apportée
Create a function myPrimes that returns the first n primes as a vector, given a positive integer. For example, if the positive integer is 5, the vector returned would include 1, 2, 3, 5, 7. In your script, prompt the user for the positive integer val
Refactor the first two lines to clc; n=input('Prime Numbers until:'); output = myPrimes(n) Edit : Addressed @Rik 's feedba...

plus de 4 ans il y a | 0

Réponse apportée
Monitor Deep Learning Training Progress
I tried reproducing the above issue using an example provided in the documentation - digitDatasetPath = fullfile(matlabroot,'t...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
What is the triangular and rectangle block symbols in this model, from the two pictures?
The triangular block is a Gain Block while the Temperature Sensor could be a subsystem. As an alternative option, Ideal Temperat...

plus de 4 ans il y a | 0

Réponse apportée
offboard control using Mavlink message
Please refer to this link

plus de 4 ans il y a | 0

Réponse apportée
Reduce read (characteristic) timeout for BLE
As of the current release, the default timeout of read cannot be configured. If a given characteristic supports 'Notify' attrib...

plus de 4 ans il y a | 0

Réponse apportée
Solve symbolic differential equation
Please refer to Solve Differential Equation

plus de 4 ans il y a | 0

Réponse apportée
Lanczos kernel for image resizing (imresize function)
The Lanczos-2 algorithm precalculates the coefficients based on the resize factor. The model calls the lanczos2_coeffi.m script ...

plus de 4 ans il y a | 2

Réponse apportée
MatLab r2020b from Database Toolbox - How to Configure Data Source from Microsoft 2016 MSExcel(64Bit) & MSAccess(64bit)
The data source configuration can be done using configureODBCDataSource. Additional documentation can be found here

plus de 4 ans il y a | 0

Réponse apportée
When does Matlab consider a Neural Network deep?
trainNetwork works with Deep Learning Layers. Additional Information can be found here

plus de 4 ans il y a | 0

Réponse apportée
How can I solve mini-batch size issue in my LSTM network?
A plausible solution would be to Change the MiniBatch SIze to 114 Convert Xcell, Ycell, and XTestCell to double type Xcell = ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Can't use laplace transformed expression with transfer function.
A plausible solution is as follows % Collect the coefficients of r2 h = collect(r2); % Split the coefficients into numerator ...

plus de 4 ans il y a | 2

| A accepté

Réponse apportée
optical power vs distance
A plausible solution clf; figure; % Create a distance vector of range 1m to 3m distance = linspace(1,3,101); hold on % plo...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Mac Bic Sur + R2020b
Gatekeeper could be preventing the installation of MATLAB. Please refer to this answer for a workaround

plus de 4 ans il y a | 0

Réponse apportée
How to plot a sphere using PLOTCUBE command?
A possible solution is as follows clf; figure hold on tic % Using spherical coordinates to plot the cubes for r = linspace...

plus de 4 ans il y a | 0

Réponse apportée
Power spectrum of an image
To plot the power spectrum of an image, periodogram can be used. An example usage I = imread('dummy.jpg'); % Plots the perio...

presque 5 ans il y a | 0

Charger plus