How to connect model from simpowersystems to model from simscape
Hi, I want to set an electrical model by simulink. I need to use current controlled current source, which is only available in simscape. However, the rest of the model is set by simpowersystems. I find I can't connect the blocks of these two libraries. I once found Arnaud Miege's comments here, that is, "You can... 20 Jan 2010 12:53
how you understand this expression?
g=g(1:(length(x)-y+1)); ... 3 Jan 2010 11:36
multiple bvp4c?
I have 3 nonlinear equations which i need to solve simultaneously using bvp4c. My equations are as follows %Equations % (1) (dT/ds)-T*((8*(pi^2)*y)/(1-4*(pi^2)))*(dy/ds)+2*pi*y*V=0 % (2) (dy/ds)-y_prime=0 % (3) T*(dy_prime/s)+(dT/ds)+(dT/ds)*(dy/ds)-T*4*(pi^2)*y+2*pi*y*S*(dx/ds)+2*pi*y*V*(dy/ds)=0 % (4) (dx/... 11 Jan 2010 03:14
Static text - vertical alignment
Here comes the next chapter in my struggles with static text labels. I have two static text labels, and which are both placed in a uipanel which serves as the background. I would like the (vertical) center of the text on both labels to be aligned to each other - which I've accomplished - and to the center of the uip... 4 Jan 2010 00:50
Analog to Digital Converter
Hi everyone, I am a currently doing a student research about powerline communications. I am having a problem on what ADC to use. Is there any ADC product compatible with MATLAB that can deliver atleast 1Msamples/sec? Thanks in advance! ... 3 Jan 2010 11:36
How to use parfor loop for Jacobi Iteration?
Original Serial Code: for j=2:n w( 2:n, j)=0.25*(w_old( 1:n-1 , j )+w_old( 3:n+1, j )+w_old( 2:n, j-1)+w_old( 2:n ,j+1)); end end I attempted to parallellize it using for j=2:n parfor i=2:n w(i,j)=0.25*(w_old(i-1,j)+w_old(i+1,j)+w_old(i,j-1)+w_old(i,j+1)); end ... 3 Jan 2010 03:00
Ho to convert a logical array to a numeric array in matlab?
Hi everyone, I want to convert a logical array to a numeric array in matlab But I do not know how Any help is appreciated Amal ... 7 Jan 2010 12:24
Total Variation Blind deconvolution
Hi, does anyone knows of a code to do total variation blind deconvolution of images (by tony chan and ck wong)? it includes lagged diffusity fixed point method, preconditioned conjugate gradient method and then solving independent systems. Thanks. ... 3 Jan 2010 03:00
How to convert a logical array to a nuemeric array?
Hi everybody, I want to convert a logical array to any type of nuemeric array. But I do not know how. Any help is appreciated Amal ... 4 Jan 2010 04:51
feeding input and output samples
Hi to all, i am designing feedforward backpropagation network throgh matlab. I am new to matlab.if i have the input samles like this p=[2 3 ]; t=[0.1 0.2 0.3 0.4 ; 0.6 0.7 0.8 0.9 ]; then matlab dont take these samples.becoz the input columns and output columns must be same.if i put these value... 3 Jan 2010 07:16