Answered
Construct a sphere using cuboids
question: same cuboid? only one and only one cuboid, or different shapes of cuboids can be used to approximate a sphere?

10 years ago | 0

Answered
How can I acquire images from a camera at 100 Hz?
is your camera assuming USB 3.1 but are you using USB 2? What Falcon model are you exactly using? ANALOG and NATIONAL INST...

10 years ago | 1

Answered
How to put a vector in a matrix?
CE= {(1,2) (1,4) (4,5) 6 7 8} does not work. Start with correct definition of the matrix CE={[1 2] [1 4] [4 5] 6 7 8} 1. re...

10 years ago | 0

| accepted

Answered
help me not to use eval in a nested loop?
Hi, regarding naming each matrix, try B={};for i=1:1:10 B{i}=['Speed' char(i+48) '_Mvr' char(i+48)]; end then attach each ...

10 years ago | 0

Answered
Function that graphs equations
try function out=buttnbread(min,max,n) t=min:n:max x0=input('Input x center: ') y0=input('Input y center: ') ...

10 years ago | 0

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

10 years ago

Solved


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...

10 years ago

Solved


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 ...

10 years ago

Answered
Encrypting a message in matlab?
The second mask should not have any reference to the first mask, sorry. Replace the last 5 lines of code with mask2=find(num...

10 years ago | 0

Answered
Encrypting a message in matlab?
original_message=input('Please enter the message you want encrypted:', 's') % original message % do not input key as string o...

10 years ago | 0

Answered
loop table to find specific criteria and create new table
1.- instead of for i=1:max(size(a_file_list)) why not for i=1:(size(a_file_list,1)) 2.- datenum does not have 'mmmyy'...

10 years ago | 1

Answered
Converting from Zernike's Polynomials values to a Point Spread and Modulation Transfer Function
To operate the instrument, read the manual: If you play a bit with the boxes of the link you include as 'here', one at a time, ...

10 years ago | 0

| accepted

Answered
FPGA in the loop with simulink
may be this link helps to start building a bus: http://uk.mathworks.com/help/simulink/ug/buses.html?searchHighlight=Simulink%20...

10 years ago | 0

| accepted

Answered
Problems after installing R2015a
Try removing user profiles from the Programs folder where you install MATLAB. Had similar problem with R2012. Cannot tell if re...

10 years ago | 0

Answered
regarding the creation of sinewave movie
try modifying the L shaped membrane demo to display a 2D pulse propagation. MATLAB has an L shaped membrane demo script, that i...

10 years ago | 0

Answered
solve a system of equations.
Could you please define ranges for each unknown? Be conservative, please define the following: Fcl_min= Fcl_max= hr_min= h...

10 years ago | 0

Answered
how to generate an initial direction for a set of random points?
you have, for each particle: direction=[direction_x direction_y direction_z] position=[position_x position_y position_z] yo...

10 years ago | 0

Answered
How can I distribute certain number among rows in a way that sum of the column is equal to that number?
Use unidrnd(600/2,1,areas) to generate the random numbers 600/2 is mean value of 600. Be aware that you want to fit random ...

10 years ago | 0

Answered
Create a row vectors that includes even/odds between 0 and X
Also possible: find(mod(X,2)==0) and find(mod(X,2)~=0)

10 years ago | 0

Answered
How to covert EEG Data file in .vrg format to .mat format to be open in matlab?
Hi, by vrg file format do you mean EDF file format? EDF: European Data Format file format to exchange multichannel biomedical...

11 years ago | 0

Answered
Subscripted assignment dimension mismatch.(matrices)
Have you tried 1. allocate initial J just after defining N to make sure J and N have same size with: J=zeros(size(N)) 2. In...

11 years ago | 0

Answered
Problem with the magnitude of DC component (zeroth order) by FFT
playing a bit with your script: {t1=[0:0.005:12]; % total amount of time samples: 10*1/.001=1001 y1 = 5 + 3*sin(2*pi*t1) + ...

11 years ago | 0

Question


PLL examples some don't work powerlib problem
Hi, I downloaded a set of PLL examples, some work fine but fractional_6.mdl returns 2 errors: 1.- Model error: Source unkno...

11 years ago | 1 answer | 0

1

answer