Answered
Using for loop
EDITED Class(:,i)= vlookup(MOD(1:end , 14:15),MOD(i,1),2,1);

ongeveer 13 jaar ago | 0

Answered
How to plot logarithmic graph in matlab
set(gca, 'YScale','log');

ongeveer 13 jaar ago | 0

Answered
How would you draw this in MATLAB?
This gives the same picture as in the paper: clear; f=0:1000;%kHz alpha=0.11.*f.^2./(1+f.^2)+44.*f.^2./(4100+f.^2)+...

ongeveer 13 jaar ago | 0

Answered
Returning and plotting values from while loop results
I would modify your while loop as: while residual > 1.0e-2 ... resx = norm(res); residual = resx/re...

ongeveer 13 jaar ago | 1

| accepted

Answered
Vectorization
N=reshape(M,j*a,j/a)

ongeveer 13 jaar ago | 0

| accepted

Answered
problem with write to text file
Changing ownership (permissions) of your destination folder can help

ongeveer 13 jaar ago | 0

Answered
text into matrix cell
A is your matrix kxk C = cell(k,k); for n = 1:k for m = 1:k C{m,n} = [num2str(m),':',num2str(A(m,n))]; ...

ongeveer 13 jaar ago | 0

Answered
Cell array to 1x1 Vector/Cell
c1 = [c{1},' ',c{2}]

ongeveer 13 jaar ago | 1

Answered
minimum value of a matrix with the main diagonal elements equals to zero
out = min(A(A~=0))

ongeveer 13 jaar ago | 0

| accepted

Answered
extracting hex numbers from string
s = 'Address: 0x050 Value: 0xEC'; c = textscan(regexprep(s,'0x',''),'%s\t%s\t%s\t%s'); Address = hex2dec(c{2}); Value...

ongeveer 13 jaar ago | 0

Answered
Integrals which cant be solved
http://www.mathworks.co.uk/help/techdoc/ref/trapz.html http://www.mathworks.co.uk/help/techdoc/ref/quad.html

ongeveer 13 jaar ago | 0

Answered
Total beginner needs some help solving an equation
doc solve

ongeveer 13 jaar ago | 1

| accepted

Answered
Radio Button and Panel GUIDE
if (get(hObject,'Value') == get(hObject,'Max')) set (handles.my_uipanel,'Visible','on'); else set (handles.my_uipanel,'...

ongeveer 13 jaar ago | 0

Answered
I want to implement this matrix
A=[zeros(64,1),(Ip-l)*eye(64,64)]

ongeveer 13 jaar ago | 0

Answered
Provided a 1D array of integers, find all combinations of 3 values from this set such that: a+b+c=0
if A is your 1D array, than you can use: B=combntns(A,3); C=sum(B,2); D=B(~C,:);

ongeveer 13 jaar ago | 1

| accepted

Answered
plotting problem
try plot(x,1-u_gb,'.k');

ongeveer 13 jaar ago | 0

| accepted

Answered
error in replacing values
use format('long') before output and you will see that everything is OK

ongeveer 13 jaar ago | 0

| accepted

Answered
how to display all non NaN values in a matrix
A=(A(~isnan(A)));

ongeveer 13 jaar ago | 9

Answered
How to use three- line loop with disp to find derivative
syms y x y=x*(2*x+1)^(1/2); f{1}=diff(y,x); for n=2:5, f{n}=diff(f{n-1},x);end f{:} %is this what you mean disp?

ongeveer 13 jaar ago | 0