photo

Shree Harsha Kodi


Last seen: plus de 2 ans il y a Actif depuis 2023

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
11 Réponses

Cody

0 Problèmes
3 Solutions

RANG
5 268
of 300 788

RÉPUTATION
10

CONTRIBUTIONS
0 Questions
11 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
1

RANG
 of 21 091

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
79 668
of 171 083

CONTRIBUTIONS
0 Problèmes
3 Solutions

SCORE
40

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 1
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
I am trying PID tuning using RL how to incorporate filter coefficient in simulink
To incorporate filter coefficients in your Simulink model and add an initial value to your action signal in your MATLAB script: ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Error in distance calculation by using Monocular Visual Simultaneous Localization and Mapping example
When using the Monocular Visual Simultaneous Localization and Mapping (SLAM) example in MATLAB, the accuracy of the estimated di...

plus de 2 ans il y a | 0

Réponse apportée
How do I create the loss function of a weighted classification layer with R2020b?
On defining the dimensions of your variables based on the information you provided: T: Training target variable of size 860x1 c...

plus de 2 ans il y a | 0

Réponse apportée
how to define initial dimention to variable that has various dimention in matlab function block simulink?
To initialize the output of the Continuous Wavelet Transform (CWT) block in Simulink, you can use a constant block that matches ...

plus de 2 ans il y a | 0

Réponse apportée
How to make separate graph for each class?
To make separate graphs for each class in MATLAB, you can follow these general steps: 1) Identify the classes in your dataset. ...

plus de 2 ans il y a | 0

Réponse apportée
Extract values from binary matrix into periodic lattice
To achieve the above you would need the following functions whose relevant docs are privided below MATLAB find function: https:...

plus de 2 ans il y a | 0

Réponse apportée
How to determine coastal erosion in matlab?
% Load coastline data from the shapefile coastData = shaperead('your_coastline_file.shp'); % Extract relevant variables mea...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
How to select and loop variables in a filename
Folder = 'path_to_folder'; % Specify the folder containing your files files = dir(fullfile(folder, '*.mat')); % Get a list of a...

plus de 2 ans il y a | 1

Réponse apportée
Sir, How to extract color and shape features for a leaf image?
% Step 1: Read the leaf image leafImage = imread('leaf.jpg'); % Step 2: Preprocess the image (if needed) % Step 3: Extr...

plus de 2 ans il y a | 0

Réponse apportée
How to create a function that can accommodate multiple definitions of the same variable?
In MATLAB, you cannot have multiple definitions of the same variable within the same scope. Each variable name can only be assig...

plus de 2 ans il y a | 0

Réponse apportée
permutations of pseudo-random ordering for a psychology experiment
% Define the number of trials and pairs for each type num_trials = 120; num_type_a_pairs = 20; num_type_b_pairs = 40; num_ty...

plus de 2 ans il y a | 0

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a