photo

Marcel Kreuzberg


Last seen: 1 jour il y a Actif depuis 2019

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
15 Réponses

Cody

0 Problèmes
128 Solutions

RANG
2 036
of 301 513

RÉPUTATION
32

CONTRIBUTIONS
0 Questions
15 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
 of 21 310

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 640
of 175 013

CONTRIBUTIONS
0 Problèmes
128 Solutions

SCORE
1 700

NOMBRE DE BADGES
9

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

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

Afficher les badges

Feeds

Afficher par

Réponse apportée
Error forming mini-batch of targets for network output "fc". Data interpreted with format "BC".
Hi, in the Deep Network Designer set OutputMode for lstmLayer to sequence.

environ un an il y a | 0

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

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
problem with Read excel file
xlsread read numeric values by default check out readtable regards Marcel

plus de 3 ans il y a | 0

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

plus de 4 ans il y a | 0

| A accepté

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

plus de 6 ans il y a | 0

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

plus de 6 ans il y a | 0

| A accepté

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

plus de 6 ans il y a | 0

| A accepté

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

plus de 6 ans il y a | 1

Réponse apportée
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,:});

plus de 6 ans il y a | 0

| A accepté

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

plus de 6 ans il y a | 0

| A accepté

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

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Largest number in Matlab
65535 127

plus de 6 ans il y a | 0

Réponse apportée
Could anyone please solve this MATLAB operation x=7/84
7/8\4 = (7/8)\4 = 4/(7/8)

plus de 6 ans il y a | 0

Réponse apportée
Largest number in Matlab
max uint16 = 2^16-1 max int8 = 2^7-1

plus de 6 ans il y a | 0