photo

Deepak


Last seen: plus d'un an il y a Actif depuis 2023

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
10 Réponses

RANG
5 868
of 300 781

RÉPUTATION
8

CONTRIBUTIONS
0 Questions
10 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
 of 21 088

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 171 031

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
mean of nonzero elements which are in between zero elements in each column
Hey @Harish Kumawat, You can compute the mean of non-zero elements between 0s in each column of a matrix and store them with th...

plus de 2 ans il y a | 0

Réponse apportée
How can I change only the first min element in each row in a matrix?
Hey @Michal Somekh, You can achieve the desired result by using a loop to iterate over each row of the matrix and finding the m...

plus de 2 ans il y a | 0

Réponse apportée
finding minimum from two matrix
Hey @jano satti, As per your query, you can find the minimum value of matrix A and the minimum value of matrix B at those loca...

plus de 2 ans il y a | 0

Réponse apportée
How do I find the nearest prime number greater than the input? This is what I've managed to do so far...
Hey @Saviyo Therattil, You can complete your code with this method - function out = next_prime(X) out = X + 1; % Initi...

plus de 2 ans il y a | 0

Réponse apportée
write a program in matlab to calculate cmmmc in Matlab (do not use predefined function lcm)
Hey @ionita, You can calculate cmmmc in MATLAB without using inbuilt LCM function with this method. % Function to calculate t...

plus de 2 ans il y a | 0

Réponse apportée
How to plot .mat file
Hey @Indrani, To plot the data from the .mat files loaded into MATLAB as cells, you can iterate over each cell, access the stru...

plus de 2 ans il y a | 0

Réponse apportée
Creating a .bin file in workspace?
Hey @Roman Around, Yes, in MATLAB, you can create a .bin file in the workspace using the `fwrite` function. Here's an example ...

plus de 2 ans il y a | 0

Réponse apportée
Calculating Capacitor Current using i= C* dv/dt
Hey @Gary, To calculate the capacitor current for the given circuit, you can use MATLAB's symbolic math toolbox to evaluate the...

plus de 2 ans il y a | 1

Réponse apportée
Hello everyone, I have date and time data in an excel separately. That is, year in one column, month in another, day in another column, and time in another column. how can i r
Hey @Eder Hernandez Martinez, To import the dates and times from Excel into MATLAB, you can use the "xlsread" function. The fun...

plus de 2 ans il y a | 1

Réponse apportée
How can I rotate vectors so they are in a plane defined by its normal vector?
Hi @Juan Manuel Hussein Belda, In MATLAB, you can use the following code to rotate a series of vectors from one plane to anothe...

plus de 2 ans il y a | 0