Community Profile

photo

Pranjal Priyadarshi


Actif depuis 2019

Followers: 0   Following: 0

Statistiques

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A répondu
How can I compute this type of optimization using fmincon?
In order to work with nonlinear equations using fmincon you can have a look at the following documentation which explains how to...

presque 5 ans il y a | 0

A répondu
How to design Swap logic with Simulink blocks to get the same code with Embedded coder?
You can always use MATLAB function block to design the swap logic.You only need to write the swap logic in the function block. F...

presque 5 ans il y a | 0

| A accepté

A répondu
change a vector into two different value by compare element in it with a threshold
We can achieve it by writing the vector in the following format. p(p>threshold) = m; %m and n being any number which we want t...

environ 5 ans il y a | 0

A répondu
how to convert the edge list (with node,node,weight) into weighted matrix
To convert an adjacency list into an adjacency matrix in MATLAB we can use the “adjacency” function available in the library. A...

environ 5 ans il y a | 0

A répondu
How can i get the frequency response from this code:
Frequency response uses an FFT-based algorithm to calculate the Z-transform frequency response of a digital filter. The function...

environ 5 ans il y a | 0

| A accepté

A répondu
(Image processing) new image with the specified color
To separate out the red lines you may convert the RGB image to HSV (Hue-Saturation-Value) image. HSV separates the image intensi...

environ 5 ans il y a | 0

A répondu
Modify the code from the previous example
The code below takes a magic square of size 6 and replaces the even elements with 2 and replaces the odd elements with 1. N=6; ...

environ 5 ans il y a | 0

A répondu
Which of the two methods is faster
There is no evidence that vectorized code is faster in general. If a build-in function can be applied to a complete array, a ve...

environ 5 ans il y a | 0

A répondu
How do you load xyz files with a similar name but only differ by a number in its name into one manipulatble array?
We can read the list of files using the “dir” command to read the files in the given directory[should be present in the path ] a...

environ 5 ans il y a | 0

A répondu
How to link to a web address or a local PDF file from App designer?
In order to assign a hyperlink to a component so that the assigned web address is opened in browser, we can add callback functio...

environ 5 ans il y a | 0

| A accepté

A répondu
simulink toolbox matlap online
Simulink is not supported for MATLAB Online.

environ 5 ans il y a | 0

| A accepté

A répondu
half bridge LLC resonant converter transfer function
In order to calculate the transfer of the open loop converter we can use the function getLoopTransfer(T,Locations) which returns...

environ 5 ans il y a | 1

| A accepté

A répondu
Choice made in menu prints a blank box
In order to get the values of the options instead of the index we can pass the values in a cell array to the menu function. The ...

environ 5 ans il y a | 0