Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

oltre 10 anni fa

Risolto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

oltre 10 anni fa

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

oltre 10 anni fa

Risolto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

oltre 10 anni fa

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

oltre 10 anni fa

Risposto
how to find average values of answers
b=zeros(1,5) for a=1:5 b(a)=2*a+1; end k=mean(b);

oltre 10 anni fa | 0

| accettato

Risposto
hi, i need to save my for loop array result in cell array,i attached my code,please correct the mistake which i did
OK. i have tried with cc as random generated matrix of size 192*192 I could able to generate the cell array of 1*384 with your ...

oltre 10 anni fa | 0

Risposto
Problem Implementing a sine wave with increasing frequency
The problem with your model is dynamic freqency change faster than the generation of sine wave itself. Say for example, at a g...

oltre 10 anni fa | 0

| accettato

Risposto
How could i generate 10000 samples of a random variable uniformly distributred in(0,1)??
In your code,loop should start form 1. i=1:1:1000 However inorder to acheieve what you have wanted, you may not need a loop. ...

oltre 10 anni fa | 0

Risposto
how to read a file in matrix format?
fid=fopen('11_20114111611_logfile.txt','r') k=textscan(fid,'%d%d%d%d') cell2mat (k)

oltre 10 anni fa | 1

| accettato

Risposto
Making Pulse sequence with if commands in Embeded MATLAB Function in simulink
When U1 is between u4 and u5, y=u5-u4=0.065-0.035 That is why you have 0.03 magnitude at your output

oltre 10 anni fa | 0

| accettato

Risposto
Need help modifying a piece of code that allows the user to draw lines
If you want to see {0,0} before the mouse click, use this code function draw_lines % Click the left mouse button to ...

oltre 10 anni fa | 0

| accettato

Risposto
Need help modifying a piece of code that allows the user to draw lines
Assign a flag for the first click and reset it afterwards. Use the flag to set the coordinates to {0,0}. Hope this is what you...

oltre 10 anni fa | 0

Risposto
Calculating values from an iterative map
for the second part, s=0; for n=4:8 k=(x(n-1)-2)+(x(n-1)+1); s=s+k; end disp(s)

oltre 10 anni fa | 0

Domanda


Deploying stand alone applications
Hello Every One, I have been trying to make a stand alone application (which should run on a pc without MATLAB) I have generat...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Risposto
insert textbox in a geoshow plot
text(0.5,0.5,'data') will display data string according to 0.5 nd 0.5

oltre 10 anni fa | 0

Risposto
PID working with sine wave as reference
PI is a common controller normally used in power electroincs for both DC-DC and DC-AC conversions. We have few systems running w...

oltre 10 anni fa | 0

Risposto
Data type conversion for mod operation result.
c=int16(mod(200,3)) will generate c as 16 bit integer class c=int8(mod(200,3)) ...

oltre 10 anni fa | 0

Risposto
How to set the default version of Matlab between two versions?
If you are using MS Windows, then: http://www.mathworks.com/matlabcentral/answers/44849

oltre 10 anni fa | 2

| accettato

Risposto
convert plot(x,y) to plot(y(ind))
g=interp1(y,x,0.5) g gives you the x value corresponding to the given y value (0.5). Use a for loop to find out the enti...

oltre 10 anni fa | 0

Risposto
Is there any setting in simulink to operate floating by integer ?
You can use convert block <</matlabcentral/answers/uploaded_files/32998/conv.png>>

oltre 10 anni fa | 0

Risposto
Smooth step changes in simulink
using a low pass filter should produce the result you wanted.. << <</matlabcentral/answers/uploaded_files/32987/step.jpg...

oltre 10 anni fa | 0

| accettato

Risposto
How to get unity power factor in three phase rectifier by hysteresis current controller
Steps: 1) Sample the input line voltage signal. Use a PLL for syncronization, the output of which is a unit mag sinusoidal sign...

oltre 10 anni fa | 0

Risposto
How do I make a for loop for summing up to specified integer
clc k=input('Enter no'); sum=0; for n=1:k sum=sum+n; end disp(sum)

oltre 10 anni fa | 0

Domanda


Using version deatils of the tool box in application
HELLO ALL, Iam developing an application for code generation later. I would like to test the version of tool boxes required fo...

oltre 10 anni fa | 1 risposta | 0

1

risposta

Risposto
how i can get the first and second letters in cell data
for k=1:4 f(k)=letters{k}(1); end for k=1:4 g(k)=letters{k}(2); end

oltre 10 anni fa | 1

Risposto
How can I get the interpolated value of and array
c= fit([1; 2; 3 ;4],[10 ;20; 30; 40],'poly2')

oltre 10 anni fa | 0

Risposto
How do I design a for-loop to sample 3 seconds of a signal every 15 seconds?
f= rand(6); f=f(:); k=1; for i=1:1:length(f) if (mod(i,15)<3) b(k)=f(i); k=k+1; e...

oltre 10 anni fa | 0

Risposto
DC/DC and DC/AC PWM Converters result problem
Yeah i do agree with your analysis. There is a mis understanding of the PWM pulse generation. In the model the carrier wave is...

oltre 10 anni fa | 0

Carica altro