photo

Manas


Actif depuis 2023

Followers: 0   Following: 0

I am a student in Electrical Engineering at IIT Kharagpur

Statistiques

All
MATLAB Answers

0 Questions
13 Réponses

Cody

0 Problèmes
8 Solutions

RANG
5 251
of 300 847

RÉPUTATION
10

CONTRIBUTIONS
0 Questions
13 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
3

RANG
 of 21 094

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
43 805
of 171 279

CONTRIBUTIONS
0 Problèmes
8 Solutions

SCORE
94

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 3 Month Streak
  • Knowledgeable Level 1
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Simulink - store signal and output as vector
Hi Tamar, You can save data from Simulink to a MAT-file using the To File block. To save it as an array, specify the Save forma...

plus de 2 ans il y a | 0

Réponse apportée
How to acces the mask 'Property Editor' when in 'Graphical' mode?
Hii Ludo, You can Right Click on the Subsystem Block you want to edit mask, then click on 'Mask', you will see 'Edit Mask'. Yo...

plus de 2 ans il y a | 0

Réponse apportée
Restrict ypred in fitrgp function
Hi Giacomo, There is no direct way to enforce constraints on the predicted values. You may use the following code to enforce th...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Skip folders in a for loop
Hi Indrani, I am assuming that you are using the fullfile function in matlab to get the addressess of each folder. This functio...

plus de 2 ans il y a | 0

Réponse apportée
How to add extension to files using MATLAB
Hi Masha, You can try using the following code to add the.pdb extension to each file % Set the path to the directory where th...

plus de 2 ans il y a | 0

Réponse apportée
smoothing the shading of pcolor plots
Hi, You can provide the interpolation method in the interp function, for example, cubic vq = interp1(x,v,xq,'cubic'); You ca...

plus de 2 ans il y a | 0

Réponse apportée
How to create a time series dataset for prediction of load demand using matlab
Hi Aakanksh, you can use the following code for reference to build you dataset % Define time interval and duration timeInter...

plus de 2 ans il y a | 1

Réponse apportée
How to plot points on map axes with varying colors using scatterm?
Hi Samuel, Can you provide the coastlines file? Also, you can checkout this answer and try out if it works for you Scatter wi...

plus de 2 ans il y a | 0

Réponse apportée
Logical class what it is and how to import
Hii, For the info regarding Logical Class, you can refer to the following documentation: Fundamental MATLAB Classes - MATLAB...

plus de 2 ans il y a | 0

Réponse apportée
Hydraulic diameter definition in docs
Hii, Yes the Hydraulic diameter defination is correct in the documentation. The unit of the hydraulic diameter depends on the u...

plus de 2 ans il y a | 0

Réponse apportée
Simscape Vehicle simulation for predefined time, X,Y and orientation values
Hii, You can create a Simulink/Simscape simulation by importing the cad model using Simulink multibody. Use your input data to...

plus de 2 ans il y a | 0

Réponse apportée
Simulink code generation from command line
Hello Hass, You can use the slbuild function to generate the C code as follows:- modelName = 'your_model'; % Replace 'you...

plus de 2 ans il y a | 0

A résolu


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

plus de 2 ans il y a

A résolu


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

plus de 2 ans il y a

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

plus de 2 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 2 ans il y a

A résolu


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

plus de 2 ans il y a

A résolu


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

plus de 2 ans il y a

A résolu


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

plus de 2 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 2 ans il y a

Réponse apportée
Power spectral density plot
you can use the following code which uses fft() function fft_voltage = fft(voltage); power_spectrum = abs(fft_voltage).^2; ...

plus de 2 ans il y a | 1