Réponse apportée
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...

plus de 12 ans il y a | 0

Réponse apportée
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']) ...

plus de 12 ans il y a | 0

Réponse apportée
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') ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 12 ans il y a | 0

Réponse apportée
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:...

plus de 12 ans il y a | 0

Question


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

plus de 12 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
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...

plus de 12 ans il y a | 0

Réponse apportée
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 =...

plus de 12 ans il y a | 0

Réponse apportée
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...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 12 ans il y a | 0

| A accepté

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

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
"Too many input arguments" error on function within GUI code
Try rhImport(hObject,eventdata) instead of just rhImport.

plus de 12 ans il y a | 0

| A accepté

Question


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

plus de 12 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
Generating a random binary matrix
A = randi([0 1], n,m)

plus de 12 ans il y a | 13

| A accepté

Réponse apportée
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.

plus de 12 ans il y a | 0

Réponse apportée
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 ...

plus de 12 ans il y a | 0

Réponse apportée
sphere made of 2d circles in 3d plot
You can use sphere function to create a sphere. Do you specifically need sphere from circles?

plus de 12 ans il y a | 0

Réponse apportée
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...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
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(...

plus de 12 ans il y a | 0

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

A résolu


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

plus de 12 ans il y a

Charger plus