photo

Pullak Barik


Last seen: mer än 5 år ago Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
16 Answers

RANK
2 140
of 299 997

REPUTATION
30

CONTRIBUTIONS
0 Questions
16 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 20 858

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 166 881

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
how to find the properties of a simulink library block using matlab script
I guess you should read up about get_param and the 'ObjectProperties' parameter for the get_param function. You can then use get...

mer än 6 år ago | 0

Answered
How to trim a text file with start and end line numbers
I use the code-generator from the import tool to only import the lines needed from the text file, and then copied the cropped co...

mer än 6 år ago | 1

Answered
How to input result looping/iteret (for) to a existing matrix ?
I can suggest the following ways- Computing Q0, Q1, ..., Q5 values in a for-loop using a single array where the values of X(i) ...

mer än 6 år ago | 1

| accepted

Answered
Return an output even if the while loop gets an error
I suggest that you use try-catch blocks in your code to customise the behaviour when you get an error. Link to documentation- T...

mer än 6 år ago | 0

Answered
Solve differential equation using ode23 and ode45
Firstly, as correctly mentioned in the comments, the eqn variable should be written as- eqn = diff(x, y) == (x + y*exp(y)); No...

mer än 6 år ago | 0

| accepted

Answered
creating a new column with three columns
I will proceed in the following way- 1) Merge col_1, col_2, col_3 into a single matrix. 2) Reshape the transpose of the array....

mer än 6 år ago | 0

Answered
How to implement multiple output condition using outport and switch
This query, though simple, seems incomplete and unclear. For instance, what happens to the value of 'z' if the if-condition hold...

mer än 6 år ago | 0

Answered
max function to receive maximum element of the row
Firstly, here's the link to the documentation on the max function- max. Use the link to understand more about the max function....

mer än 6 år ago | 0

| accepted

Answered
How to combine multiple curves to create one single curve or combining multiple curves to generate single average density curve
Please refer to the following thread on MATLAB Answers and tell if it helps- Combining curves to create a single average curve. ...

mer än 6 år ago | 0

Answered
Parse varies of pair variable into function?
The comment by Andreas Dorner should help. Basically, using findpeaks(y, x, tmp{:}); should work out for you.

mer än 6 år ago | 0

| accepted

Answered
time intervals distribution in 24 hours day time
I guess that making a table that stores these times will help. I have attached a code below, please tell if it helps- tariff = ...

mer än 6 år ago | 0

Answered
plot differential equation need help
I tried a way out, tell me if it helps- clc syms y(x); syms q; Dy = diff(y); ode = diff(y,x,2) + q*y == 10*q; %The equation...

mer än 6 år ago | 0

| accepted

Answered
live editor plots next to each other
As mentioned in the comment by @Vidhathri, you can try using subplot to cater to your needs- Subplot docs page. If you want two...

mer än 6 år ago | 0

Answered
How to split data from being in one excel file cell into multiple column
I guess the following code shall work for you- clc; clear; c = readcell('test1.xlsx'); x = c(cellfun(@ischar, c)); split1=r...

mer än 6 år ago | 0

Answered
Are both the AeroSpace Toolbox and blockset required to do flight dynamics simulation in Simulink and how to get them to show/use them once installed.
If you want to use the drag and drop functionality for various relevant blocks for modelling on the Simulink GUI, you will need ...

mer än 6 år ago | 0

Answered
vertcat error due to Dimensions of arrays being concatenated are not consistent
If you open 'split1' variable from the workspace and inspect its elements, it is easy to see why you are facing the issue. What...

mer än 6 år ago | 1

| accepted