Risposto
DC/DC and DC/AC PWM Converters result problem
If duty is 0.8, the output was 359V. <</matlabcentral/answers/uploaded_files/30808/power_fftscope_0.8.bmp>> If duty is 0...

oltre 9 anni fa | 0

Domanda


How to add four y axes on to a plot
Hi.. I would like to know how should i add multiple y axes side by side on left of the plot. I was trying to use gca but could...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Risposto
how to arrange different matix as a contineus single matrix
Output1=horzcat(a,b,c)

oltre 9 anni fa | 0

| accettato

Domanda


Filling different regions of a figure with different colous/patterns
Hello! I have a figure plotted between say y=sin(x) and (x) where x=0:pi/18:2*pi. I would like create 3 regions as defined blo...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Risposto
I have a doubt, how to notify the values at output..??
You can probably save all the output data points in a mat file/ workspace. Later you can edit that data as you want. Is tha...

oltre 9 anni fa | 0

Risposto
Change y axis length without changing axis range
You may require an higher order polynomial to do that. You may require more data points to exaclty fit a curbve to the data

oltre 9 anni fa | 0

Risposto
use of Fast fourier transform block in simulink
This block gives you the FFT spectrum at appropriate intervals and displays in a figure. It also displays the detailed rms value...

oltre 9 anni fa | 0

Risposto
Can any friends guide me this question ? How increase High efficiency and power density in Bridgeless Rectifier ?
Probably the question is not related to MATLAB/SIMULINK. ASIK, bridgeless rectifier itself is a highly efficient topology since...

oltre 9 anni fa | 0

Risposto
Counting number of 1's in different bins
For a binary vector B K= sum(B==1) will return no of 1s

oltre 9 anni fa | 0

Risposto
How to connect subsystem with series resistor load from sim power system?
Signal components can not be connected to the power components. As the subsytem doesnot consists the power components such ...

oltre 9 anni fa | 0

Risposto
Find the total number of values between alimits
sum(3<A)-sum(A>=10) USE THIS

oltre 9 anni fa | 0

Risposto
how to make a function that generate uniformely distributed random matrix
Replace a=rand(1,limit); with a=limit*rand(1,1); in your code

oltre 9 anni fa | 1

Risposto
Write a Matlab script that asks for an integer (n) and then computes the following based on the value of the integer:
k=input('enter the data') a=1:k; disp('before manipulations') disp(a) for n=1:length(a) if (a(n)>1&&mod(a(n),2)...

oltre 9 anni fa | 0

Risposto
Matrix multiplication have error
Pls refer the basic matrix multiplication rules. you can not multiply a 4*1 matirx with 3*7 matrix.

oltre 9 anni fa | 0

Risposto
error when sum a vector
It did not gave any error in my pc. >> probabilite= [0.165575031104594 0.158621930989492 0.160414724735035 0.15951323464744...

oltre 9 anni fa | 0

| accettato

Risposto
How can I create a sub-matrix if the number of rows change according to main-matrix?
clc k=0; for i=2:(length(A)) if (A(i)~=A(i-1)) k=k+1 b(k)=i end end Try out this..

oltre 9 anni fa | 0

Domanda


picking data from excel
Hi I have an excel sheet which contains the names of the people (strings)as the first coulmn. Remaining coloumns contains the...

oltre 9 anni fa | 1 risposta | 0

1

risposta

Risposto
how to overlay two plot of image to be one image only. But display both plot on that image.
Probably subplot may help you. subplot(2,1,1) plot(x1,y1) subplot(2,1,2) plot(x2,y2) this creates two plots side by side

oltre 9 anni fa | 0

Domanda


Writing s-functions to be used in real time environmnets
A model is available with me which is built such as to generate code using RTW to run on specific target. Iam tracing out now ho...

oltre 9 anni fa | 0 risposte | 0

0

risposte

Risposto
I want the value of 'gama1' to be obtained from the following equation
gamma1 variable has been used in the equations prior to its declaration. MATLAB does not understand what is gamma1 until it fac...

oltre 9 anni fa | 0

| accettato

Risposto
i want to give sinusoidal input of 230v 50Hz signal to my power electronics project? how can get this
You can use the AC voltage source simpowersystems ---> Electricla sources------> AC Volatge source

oltre 9 anni fa | 0

Risposto
Element-wise interval conformity check
Without looping, this can be done by accessing each element of a matrix and processing with an if condition. That makes lot of ...

oltre 9 anni fa | 0

Domanda


How to interface C API in RTW environment
How to write c API tlc files and inline with the system tlc file to stream the data while code is excuted on specific hardware ...

oltre 9 anni fa | 0 risposte | 0

0

risposte

Risposto
Is there a specific function forcing user to select a particular option?
you can use i= menu(' Which Pet do You Have?','cat','dog','bird','other'); Which results in a pop up menu with opt...

oltre 9 anni fa | 0

Risposto
taking value of variable after some periods, or after few zero crossing
As i understood from your problem decsription, basically you require a frequency divider. Pls find the attachement for a simpl...

oltre 9 anni fa | 0

Risposto
Where do I have to put the plot?
IN your m-file, m results in a scalar value. Whereas Vcr is an array. Replace the plot command with plot(1:m,Vcr) or plot...

oltre 9 anni fa | 0

| accettato

Risposto
How to store and retrieve value in simulink
You can use integer delay block.

oltre 9 anni fa | 0