Answered
Creating vectors by rand() and looping it
Good start, but do this to save the ceil function result back into vector: vector = ceil(vector); For the next part you need a...

6 years ago | 0

| accepted

Answered
How do I pull a value out of a different equation @ a specific value
[Tmin,k] = min(T); Dt = D(k);

6 years ago | 0

| accepted

Answered
Multiplying every secound element in a vector with -1
Or yet another of the zillion ways vny = v; vny(2:2:end) = -vny(2:2:end);

6 years ago | 1

Answered
Too many output arguments.
Why not just c = 2*x; d = 4*y;

6 years ago | 0

Answered
How to call all arrays that start with the name "CV_"?
Don't do that. See this post for reasons why: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-sh...

6 years ago | 0

Answered
Trying to create a simple function Matlab gives me an error message
Put your vecout( ) function code in a separate file called vecout.m

6 years ago | 0

Answered
Hi guys, help me, please!
MATLAB indexing is 1-based, not 0-based. You will need to adjust your indexing: a(1) = 1; a(2) = 0; : etc

6 years ago | 0

Answered
Dimensions of arrays being concatenated are not consistent.
If they are all row vectors, then I would think something like this: Total_No_cells_r = [Total_No_cells_r, total_cellcount_r]; ...

6 years ago | 0

Answered
Extract integer number from a cell array.
You could do this: C = your cell array of strings, some containing numbers d = str2double(C); d = d(~isnan(d));

6 years ago | 0

Answered
Why is the inv function not working in this code (simple)
Best to put commas in your matrix difinition so that the parser doesn't inadvertently combine things that you didn't want. E.g.,...

6 years ago | 1

| accepted

Answered
(ODE45) Unable to perform assignment because the left and right sides have a different number of elements
It might be simpler to have separate files for this. Put this code (and only this code) in a file called HW4_matlab.m %% Solvi...

6 years ago | 0

Answered
Precision in calculation of large digits
You need to convert to vpa first so that the factorial calculation is done with extended precision. factorial(vpa(97))

6 years ago | 2

Answered
Attempting to completely fill out an array(6,7) with 1's and 2's for connect4
Maybe you could explain what your code is supposed to be doing. Commenting the code would be great. But if you just want a boa...

6 years ago | 0

Answered
not enough argument input
You need to put your function code into a file called dew_point.m Then you need to call your function with inputs, e.g. T = so...

6 years ago | 1

Answered
Can someone help me Create a function called that will automatically generate an array where the elements in the array are the sum of the indices? i am lost on this.
If I understand your description correctly, the magic( ) function has nothing to do with your assignment. You are simply asked t...

6 years ago | 1

| accepted

Answered
Data arithmatic addition with single precision
Floating point operations will often yield slightly different results if you change the order of operations. This is to be expec...

6 years ago | 0

Answered
How to locate the index of the maximum value in a given range
Use the 2nd output of the max function: [p,i] = max(y); p is the max value, i is the index of the max value t(i) is the value...

6 years ago | 0

| accepted

Answered
Change all elements in 2nd column to 3
vArr(:,2) = _____; % <-- you fill in the blank

6 years ago | 0

Answered
Create array Arr with 5 rows and 4 columns with each element = 5
Yes. Replace all of your numbers with 5 and you will have it. E.g., Arr = [5 5 5 5; etc. This is the hardest way to accomplish...

6 years ago | 0

Answered
Create array Arr with 5 rows and 4 columns with each element = 5
Hint: doc zeros doc ones doc repelem doc repmat

6 years ago | 0

Answered
if i have 256x256 matrix and i want to zero padding it to 512x512 how can i do ?
If you just want it padded on two sides, then simply k_im = your 256x256 matrix k_im(512,512) = 0; % pad 0's out to (512,512) ...

6 years ago | 0

Answered
How can I plot accleration in the x, y, and z directions? Each accerlation coordinate a(x,y,z) is associated with a moment in time.
Would a simple 2D plot suffice? E.g., plot(t,x,t,y,t,z); grid on legend('x','y','z'); xlabel('time') ylabel('acceleration'...

6 years ago | 1

Answered
how to write the this in matlab e^((x^-1)/2) -1
y = exp((x.^2-1)/2) - 1; See the Getting Started section of the doc for initial help on writing MATLAB code.

6 years ago | 0

| accepted

Answered
Save serial datenum as decimal, not scientific notation
First, MATLAB stores all doubles the same way ... as IEEE binary floating point format. What you are seeing as "737389.4167 beco...

6 years ago | 0

Answered
Breaking changes for C++ API?
The current online doc for mxCreateStructMatrix( ) says the last argument must contain "... one or more field names ...", which ...

6 years ago | 0

Answered
Writing a funciton for e^x values?
You use the same n value for the first three terms. You need to increment n each time you add a term, including the first two t...

6 years ago | 0

Answered
Trying to write a function for the inverse of a matrix.
You are missing the part where you append the identity matrix to the right side of A before you start your Gauss elimination. So...

6 years ago | 0

Answered
mex fortran code containing intrinsic function using Intel fortran compiler
Can you post the offending code? Maybe you are calling it with a non-real argument and the compiler is complaining that it can't...

6 years ago | 0

Answered
How to re-prompt user input if given incorrect value?
str2double will turn your inputs into numeric, so you will pass your isnumeric( ) test even if there are problems. Instead, chec...

6 years ago | 0

| accepted

Answered
Can not use the Fibonacci built in function
For simplicity, let's assume you don't know how many iterations you need in advance. So start with your current code: while x <...

6 years ago | 0

Load more