Respondida
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?

más de 10 años hace | 0

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

más de 10 años hace | 1

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

Respondida
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: ') ...

más de 10 años hace | 0

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 1

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

Respondida
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)

más de 10 años hace | 0

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

más de 11 años hace | 0

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

más de 11 años hace | 0

Respondida
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) + ...

más de 11 años hace | 0

Pregunta


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

casi 12 años hace | 1 respuesta | 0

1

respuesta