Respondida
Linear fit between two sets of independent variables
If your model if y = x; Then, m = mean(y); J = sum((x-y).^2); S = sum((y-m).^2); r2 = 1 - (J/S); % R^2 value or c...

alrededor de 12 años hace | 0

Respondida
Run a loop through multiple matrices
Something like this: for i = 1:5 eval(['A' num2str(i) '(' 'A' num2str(i) '<0.1 | A' num2str(i) '>0.3)' '=' 'NaN']) ...

alrededor de 12 años hace | 0

Respondida
Setting the amount of data points before plotting
How about function hydrogenusage P = 0:1:4000; Q= (120*P)-(P.^2); plot(P,Q) xlabel('Power') ylabel('Usage') ...

alrededor de 12 años hace | 0

| aceptada

Respondida
error: In an assignment A(I) = B, the number of elements in B and I must be the same.
The problem is in re(i)=re(i)+N(i)*b*(L/2)*alpha(g); b is (n*1) matrix and L is a (1,n) matrix. If you are doing, what I...

alrededor de 12 años hace | 0

Respondida
Delete rows of a matrix
Lets say you matrix is something named A. Tol = 1e-6; count = 1; flag = 1; while (flag == 1) temp1 = A(count+1:...

alrededor de 12 años hace | 0

Pregunta


Small Probabilities appearing less frequent using rand
I am trying to do some Monte Carlo Type simulations. In this, I have few choices which needs to be selected using weighted proba...

alrededor de 12 años hace | 2 respuestas | 0

2

respuestas

Respondida
Problem with if function and decimal numers
The issue is very small difference in floating point numbers, like 1.00000 and 1.0000000001. There is negligible difference howe...

alrededor de 12 años hace | 0

Respondida
create periodic tasks set
Lets say you have execution time and period in vector A and B, respectively. Then you might do something like this: for i =...

alrededor de 12 años hace | 0

Respondida
Working with Dates,Problem with syntax
Following your code trend: strfind might not work in this case as for example if you are looking for January (01) in a date stri...

alrededor de 12 años hace | 0

| aceptada

Respondida
Confuse with function handles, matrix and single point
In defining f, you didn't do the function right. To take a value of x as a vector, you need to use *./* instead of just */* . I...

alrededor de 12 años hace | 0

| aceptada

Respondida
"Not enough input arguments" plotting a function
First define r like r = 1:10; Then do the plotting using, plot(r,sFn(r))

alrededor de 12 años hace | 0

| aceptada

Respondida
How do i obtain a matrix from a gui table to multiply it to another matrix?
that's because tableData is undefined in pushbutton2_callback. add global tableData; before a = str2num(tableData). this will...

alrededor de 12 años hace | 0

| aceptada

Respondida
"Too many input arguments" error on function within GUI code
Try rhImport(hObject,eventdata) instead of just rhImport.

alrededor de 12 años hace | 0

| aceptada

Pregunta


Matlab 2013a versus 2012b (Speed Issue)
I have a long simulation which I wrote while using Matlab 2012b. I run it on a more powerful linux system which has 2013a versio...

alrededor de 12 años hace | 0 respuestas | 0

0

respuestas

Respondida
Generating a random binary matrix
A = randi([0 1], n,m)

alrededor de 12 años hace | 13

| aceptada

Respondida
How do I create such matrix ? (please look at the thread for further details)
How about C = A; C(:,2:end) = A(:,2:end)-B(:,1:end-1); This solution is for generalized (n*m) system.

alrededor de 12 años hace | 0

Respondida
How to find the global mean(average)of the entire scene of a hyperion hyperspectral data.
If by global mean, you mean the mean value of the reflectance values throughout the whole bands, then you can do something like ...

alrededor de 12 años hace | 0

Respondida
sphere made of 2d circles in 3d plot
You can use sphere function to create a sphere. Do you specifically need sphere from circles?

alrededor de 12 años hace | 0

Respondida
How to scale the axis while ploting some function which changes its size on every iteration?
Use ylim([min max]) right after plot(x,y). I think you might have put ylim after drawnow, this adjust the y-axis but after plott...

alrededor de 12 años hace | 0

| aceptada

Respondida
How to get a 10 day avergaed data set from a daily data set
Lets say, your dataset is called A. [m,~] = size(A); tmp1 = cumsum(A(:,2:3)); tendayAvg = zeros(m-9,2); tendayAvg(...

alrededor de 12 años hace | 0

Resuelto


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

alrededor de 12 años hace

Resuelto


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

alrededor de 12 años hace

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

alrededor de 12 años hace

Resuelto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

alrededor de 12 años hace

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

alrededor de 12 años hace

Resuelto


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

alrededor de 12 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

alrededor de 12 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...

alrededor de 12 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 ...

alrededor de 12 años hace

Resuelto


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

alrededor de 12 años hace

Cargar más