Community Profile

photo

Pramit Biswas


Indian Institute of Technology (IIT), Patna

Last seen: 9ヶ月 前 2013 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Thankful Level 3
  • Revival Level 1
  • Quiz Master
  • CUP Challenge Master
  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Speed Demon
  • First Answer
  • Creator
  • Commenter

バッジを表示

Feeds

表示方法

質問


Not able to start parpool in multiple different matlab instances simultaneously in a single machine.
I tried in multiple different matlab instance. for i = 1:2 str2Eval = [ '!matlab -r "myFunction(''' fileName(i) ''');exit;...

4年弱 前 | 2 件の回答 | 0

2

回答

質問


In switch-case, case values from variable (dynamic)
array1 = [1 2 3]; % this will change in the program array2 = [4 5 6]; % this will change in the program switch an...

6年弱 前 | 1 件の回答 | 0

1

回答

質問


Clarification for parallel process
I have set up one _mainScript_, where one parallel for initiates calling of _func1_ function. This function calls _script1_ with...

6年弱 前 | 1 件の回答 | 0

1

回答

質問


Help: restructuring parfor
totpV=5; vars = rand(totpV,2); for loop1=1:100 for loop2=1:totpV % Make this loop2 parallel using parfor ...

約6年 前 | 1 件の回答 | 0

1

回答

質問


Specify any block parameter values from other constant block (simulink)
I have multiple RLC blocks, and I want to control their parameter from one single block, so that I don't have to set for each RL...

約6年 前 | 1 件の回答 | 0

1

回答

回答済み
sorting according to another vector
function B = sortBlikeA(A,B) [~, Ao] = sort(A); Bs=sort(B); B(Ao)=Bs; end

約6年 前 | 3

質問


histcounts error in place of histc
Links: <https://in.mathworks.com/help/matlab/ref/histc.html histc>, <https://in.mathworks.com/help/matlab/ref/histcounts.html hi...

6年以上 前 | 3 件の回答 | 1

3

回答

質問


sum of array in structure.
uC = zeros(1,length(X)); for loop1 = 1:length(X) uC(loop1) = sum(X(loop1).Y); end Any other/proper/quick wa...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Which method is faster?
1) a(1,2).last_index=a(1,2).last_index+1; a(1,2).multiple_vars(a(1,2).last_index) = value1; 2) a(1,2).multiple_v...

7年以上 前 | 1 件の回答 | 0

1

回答

質問


How to draw special figures like this:
<<http://www.teach-ict.com/gcse_computing/ocr/213_software/utilities/miniweb/images/harddisk.jpg>> Suppose i have 3(N) boolea...

7年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Can anyone help me with the PID tuning using #Particle Swarm Optomization for Load Frequency Control of 3 area system??
start with <http://www.mathworks.com/matlabcentral/fileexchange/43541-particle-swarm-optimization--pso- THIS>

8年弱 前 | 0

回答済み
I am in the need of your help regarding implementation of PSO MATLAB code for a two area interconnected power system for LOAD FREQUENCY CONTROL.
start with <http://www.mathworks.com/matlabcentral/fileexchange/43541-particle-swarm-optimization--pso- THIS>

8年弱 前 | 0

回答済み
I am working on control of nonlinear inverted pendulum using PID and LQR.Now i want to apply PSO on PID .How PSO toolbox can use in this problem or if anybody have coding please answer
start with <http://www.mathworks.com/matlabcentral/fileexchange/43541-particle-swarm-optimization--pso- here>

8年弱 前 | 0

質問


strfind first occurrence.
http://in.mathworks.com/help/matlab/ref/strfind.html#btvz00e-2_1 str = 'Find the starting indices of a pattern in a character...

8年弱 前 | 1 件の回答 | 1

1

回答

質問


How many times this for loop will execute
count =0; for i=1:5 count = count +1; if true i=i+1; end end I want to skip som...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


run C++ program in using MATLAB
I have a main.cpp code including all necessary functions in one file (i.e., it is not a function, full code with main). Can I...

約9年 前 | 1 件の回答 | 0

1

回答

質問


use CPLEX from MATLAB
I have a *text* file of _lp_ problem Minimize 5.8 x_1 + 3 x_2 subject to x_1 + 2.1 x_2 = 6 3 x_2 ...

約9年 前 | 0 件の回答 | 0

0

回答

回答済み
C++ to matlab(m-file) without mex
final matlab code: input1 = fopen('exp.txt','w'); fill = '02'; for i=0:1:1 for j=0:1:11 str = s...

約9年 前 | 0

質問


C++ to matlab(m-file) without mex
I have a C++ code: #include <iostream> #include <fstream> #include <iomanip> // std::setfill, std::setw u...

約9年 前 | 3 件の回答 | 0

3

回答

質問


C++ to matlab(m-file) without mex
I have a C++ code: #include <iostream> #include <fstream> #include <iomanip> // std::setfill, std::setw u...

約9年 前 | 0 件の回答 | 0

0

回答

質問


Find State Space Equation
<</matlabcentral/answers/uploaded_files/9565/problem.png>> i hv a 3rd order System, a 7th order system, they are connected as...

約10年 前 | 0 件の回答 | 0

0

回答

質問


stop/ break 'sim' and continue to the next step depending upon elapsed time
{ Prog.... .... ... tic sim('model', ConfigSet); toc ... Prog continues ... } If I want or stop/ break ...

10年以上 前 | 0 件の回答 | 0

0

回答

質問


How to connect simulink block and simpowersystem block
<<http://imagesup.net/?di=1013779475062>> I want to connect these two blocks. How can I?

10年以上 前 | 3 件の回答 | 0

3

回答

回答済み
How to open a specific EXCEL sheet with the function _fopen_?
Hope this help <http://www.mathworks.in/help/matlab/ref/xlsread.html>

10年以上 前 | 0

質問


How to put a impulse disturbance in a control signal of a simulink model?
I want to give disturbance(not random) automatically in to system. Say, 5 unit impulse

10年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Help on SimPowerSystems for Getting Started
Set Model configuration> Solver to: Fixed Step, Runge Kutta with .001 step size

10年以上 前 | 0

| 採用済み

質問


Help on SimPowerSystems for Getting Started
I try to simulate this simple circuit using SimPowerSystems(not by Foundation Library) <<http://imagesup.net/?di=713771095415...

10年以上 前 | 1 件の回答 | 0

1

回答

質問


Help onOpposite of Manual Switch
Is there any manual switch to choose between two different "outputs" based on Input say input is u then one output is 2*u ...

10年以上 前 | 0 件の回答 | 0

0

回答

質問


How Simulink block works? How to program it?
How matlab simulink works? What actually happen on this blocks? logic/math to program it in real time; I know that inte...

10年以上 前 | 2 件の回答 | 0

2

回答

質問


Matlab function help in simulink model
<http://imagesup.net/?di=213769298274> i want to write this function in Matlab Function Box { function y = func_name(a)...

10年以上 前 | 1 件の回答 | 0

1

回答

さらに読み込む