Respondida
Lighting the Solar System - Omnidirectional light source (Sun)
I don't know really if Matlab is used for such tasks, but haven't you tried Simulink for easier handling of the problem? Such gr...

alrededor de 11 años hace | 0

Respondida
while loop in data file for trapz?
Apparently, the variable (Num) is not (1). That's why the (while loop) returns nothing. I've tried the lines you posted and it w...

alrededor de 11 años hace | 0

Respondida
Switch columns in a matrix without a loop
for exchanging two columns 3 - 9 : A = randi(20,4,10); % A random 4 by 10 matrix of integers A(1,:)=[1 2 3 4 5 6 7 ...

alrededor de 11 años hace | 0

Respondida
I WANT TO SOLVE THE EQUATION for x: x*exp(x)=(a1-x)*a2*a3 . Here a1 and a3 are matrices and a2 is a constant. I cant solve the equation using solve
True, indeed. Not only for (A,B) = (11,13) and (3,-6), but for a wide range of other set, including the given coefficients.....

alrededor de 11 años hace | 0

| aceptada

Respondida
I WANT TO SOLVE THE EQUATION for x: x*exp(x)=(a1-x)*a2*a3 . Here a1 and a3 are matrices and a2 is a constant. I cant solve the equation using solve
The equation you wrote is x*exp(x)=(a1-x)*a2*a3 y= x*exp(x)-(a1-x)*a2*a3 y= x*exp(x)-a1*a2*a3 +x*a2*a3 Let: a1*...

alrededor de 11 años hace | 0

Respondida
how to find the sum terms in of binomial expansion
The general steps to find such a summation are: - Start a loop over r, - Calculate each term as a function of (r), - I...

alrededor de 11 años hace | 1

| aceptada

Respondida
how do i display this particular matrix in a separate text file in the below mentioned format?
Use the code below after adding your filename with its path: clc clear filename = 'your_filename.txt'; ...

alrededor de 11 años hace | 0

Respondida
sum(w) and ones(1,size(w,2))*w' results totally different numbers
The line ones(1,size(w,2))*w' means creating a ones matrix with dimensions (1,size(w,2)) multiplied with w', and ...

alrededor de 11 años hace | 0

Respondida
How to input a matrix of unknown dimensions into a function?
A is an input argument passed from function call function_name(A). SO, DELETE THIS LINE from the beginning, you do not need to i...

alrededor de 11 años hace | 0

| aceptada

Respondida
Why the loop return only the last element ?
It is a little tricky how loops are working in any program, aren't they? You used subplot and set and get within the same loop, ...

alrededor de 11 años hace | 0

| aceptada

Respondida
MATLAB solve function is taking a very long time
Sometimes trying the (simplify) command successively after each solve command, helps making the syms math incredibly faster. It ...

alrededor de 11 años hace | 0

Respondida
i've an image of size 185x256 and i've divided the image into discrete blocks having block rows 16 and block columns 16. when i access the blocks in a loop it says index exceeds matrix dimension...
Just add clear at the very top of the code. Also these issues: Line 26: change (oneBlocl) to (oneBlock) Li...

alrededor de 11 años hace | 0

| aceptada

Respondida
how to plote 3 variable on 2D plot
But the single x-axis can't hold more than one variable, unless: * The two (or more) variables have the same units, as the r...

alrededor de 11 años hace | 0

| aceptada

Respondida
2d index to 3d array
First note that adding a third dimension that is interpreted as (color) in a grayscale (2-D matrix) image is a logically false t...

alrededor de 11 años hace | 0

Respondida
Subscripted assignment dimension mismatch.
In the line C=-n.*sqrt(pi.*k./(2.*R(mg))).*besselj(n+0.5,k.*R)+k.*sqrt(pi.*k.*R(mg)./2).*besselj(n-0.5,k.*R(mg)); use R...

alrededor de 11 años hace | 0

| aceptada

Respondida
Number of lines in a txt file (empty lines computed)
Check this out: E=textread('Your_File.txt','%s', 'delimiter', '\n'); % reads strings, white-space or delimiter-sepa...

alrededor de 11 años hace | 0

| aceptada

Respondida
matlab to excel back to matlab
So you want to write a program in Matlab that writes 3 values in 3 cells in an Excel file? OR you need to read 3 cells from an e...

alrededor de 11 años hace | 0

Respondida
How to find parameters of a time series by MLE
Hi. The equation listed in the figure appears so uneasy to handle. That is true since it has cyclic-like behavior with three...

alrededor de 11 años hace | 1

| aceptada

Respondida
Read in File with Letter, Number, and Quotation Marks
f=fopen('Your_File','r'); Readings=fscanf(f,'c',[1,inf]); then change the contents of (Readings) either to numbers using...

alrededor de 11 años hace | 0

Respondida
can change the name of txt. file not manually
If your filenames are part1_1.txt, part1_2.txt, part1_3.txt.. etc., and intersect_1.txt, intersect_2.txt.. etc., and w...

alrededor de 11 años hace | 0

Respondida
How to update the variable of a function using a dialogbox?
Try the (while) loop with simple criterion, as: clear all; close all; prompt = {'CORRELATION SIZE:'}; ...

alrededor de 11 años hace | 1

| aceptada

Respondida
Ploting 3D flow data (4D plot)
Logically, no 4-D plot can be made sensible to us (unfortunately, we are stuck to see and understand 3-D world, only). So even i...

alrededor de 11 años hace | 0

Respondida
How I can extend this function
The function you wrote above has an error at I = 1:1:6; it should be I = 0:1:6; % or simply I = 0:6; ...

alrededor de 11 años hace | 0

Respondida
-log(SNR) does it make any difference?
Easily decompose the log argument! For any (ratio) R=S/N, then (please note that I highlighted the math formulas like codes, yet...

alrededor de 11 años hace | 0

| aceptada

Respondida
Error in using while loop?
Please do not use ( less than as < or greater than as > ) when using symbolic math. Instead use: while (gt(m,iter) && (lt...

alrededor de 11 años hace | 0

Respondida
plot function Too many input arguments.
This function works fine and nothing's wrong, it worked here correctly. The output_noise is (1 by 3000) and its maximum is ~ 1 e...

alrededor de 11 años hace | 0

Respondida
How to move a point on x-axis
Try the following, and modify is needed: close all axis ([0 20 0 40]) hold for x=0:20 plot(x,0,'...

alrededor de 11 años hace | 0

Respondida
How to convert an GF(Galio Field) array to uint8 array?
If it was (Galois) Field, used in advanced fields as cryptography and coding theory, please seek the reference page: < http...

alrededor de 11 años hace | 0

Respondida
how to convert gray scale image into rgb image?
Use colormap types, since you are interested with a colored region of interest, I think any colormap format suffices. Example: ...

alrededor de 11 años hace | 1

Respondida
how to put the obtained 'k' value in a separate array?
Simply use D1= overload(k) If (k) was not a positive integer you cannot use it as a matrix index. It is the function ...

alrededor de 11 años hace | 0

Cargar más