Community Profile

photo

Marcel Kreuzberg


Last seen: 26 dagar ago Active since 2019

Statistics

All
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Community Group Solver
  • Introduction to MATLAB Master
  • Solver

View badges

Content Feed

View by

Answered
I get different results for the product of two matrices?
change results(2,np)=mean(u(:,np)-mean(u(:,np)).*w(:,np)-mean(w(:,np))); to results(2,np)=mean( (u(:,np)-mean(u(:,np))) .* (w...

mer än ett år ago | 0

| accepted

Answered
problem with Read excel file
xlsread read numeric values by default check out readtable regards Marcel

mer än ett år ago | 0

Answered
Why am I getting error : "Line: 21 Column: 1 Illegal use of reserved keyword "variables".
'end' missing after outputs block (before variables) regards Marcel

mer än 2 år ago | 0

| accepted

Answered
I have Day, Month, Year, Hour and Minute in different columns, how to combine in a datetime format (17-Oct-2019 00:00)?
try Second = zeros(53715,1); Year = Year+2000; t = datetime(Year,Month,Day,Hour,Minute,Second,'Format','dd-MMM-yyyy hh:mm'); ...

mer än 4 år ago | 0

Answered
detect Circles and squares on the image using regionprops
try this I = imread('test.png'); imshow(I); I = rgb2gray(I); I = im2bw(I,0.01); [L ,num] = bwlabel(I); stats1 = regionprop...

mer än 4 år ago | 0

| accepted

Answered
Loop to write data in excel from 1 st iteration to n th iteration
for t = 0:1:10 a = cos(t).*[2 3;4 5] b = cos(t).*[6 5;4 6] c = a+b d = eig(c) r = 2*3*d w(:,t+1) = r end csvwrite(...

mer än 4 år ago | 0

| accepted

Answered
How can i plot this graph?
clear clc clf x = -0.5:0.001:1.8; f2=mod(x,1); f1=mod(-0.5*cos(2*pi*-x),1); plot(x,f1,'.'); hold on plot(x,f2,'.'); hol...

mer än 4 år ago | 1

Answered
How to print data from cell array to a text file ?
try fprintf(fid ,'%d %f \r\n', FINALSHEET{1,1}{row,:},FINALSHEET{1,2}{row,:});

mer än 4 år ago | 0

| accepted

Answered
What is the meaning of any_image(:,w:-1:1) in MATLAB
w:-1:1 start with w step -1 till 1 6:-1:1 -> 6 5 4 3 2 1

mer än 4 år ago | 0

| accepted

Answered
Adding 2 values of old vector into new vector of half size
b = a(1:2:end) + a(2:2:end) (this is not working for uneven amount of inputs)

mer än 4 år ago | 0

| accepted

Answered
Largest number in Matlab
65535 127

mer än 4 år ago | 0

Answered
Could anyone please solve this MATLAB operation x=7/84
7/8\4 = (7/8)\4 = 4/(7/8)

mer än 4 år ago | 0

Answered
Largest number in Matlab
max uint16 = 2^16-1 max int8 = 2^7-1

mer än 4 år ago | 0