
Marcel Kreuzberg
Followers: 0 Following: 0
統計
All
Feeds
回答済み
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.
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.
約2ヶ月 前 | 0
回答済み
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...
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...
2年以上 前 | 0
| 採用済み
回答済み
problem with Read excel file
xlsread read numeric values by default check out readtable regards Marcel
problem with Read excel file
xlsread read numeric values by default check out readtable regards Marcel
2年以上 前 | 0
回答済み
Why am I getting error : "Line: 21 Column: 1 Illegal use of reserved keyword "variables".
'end' missing after outputs block (before variables) regards Marcel
Why am I getting error : "Line: 21 Column: 1 Illegal use of reserved keyword "variables".
'end' missing after outputs block (before variables) regards Marcel
3年以上 前 | 0
| 採用済み
回答済み
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'); ...
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'); ...
5年以上 前 | 0
回答済み
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...
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...
5年以上 前 | 0
| 採用済み
回答済み
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(...
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(...
5年以上 前 | 0
| 採用済み
回答済み
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...
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...
5年以上 前 | 1
回答済み
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,:});
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,:});
5年以上 前 | 0
| 採用済み
回答済み
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
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
5年以上 前 | 0
| 採用済み
回答済み
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)
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)
5年以上 前 | 0
| 採用済み